We use BigFix as our EndPoint management system. It is usually one of the first programs we need to install on our computers. Even though we have some automated system in place to install the BigFix client, there are often times we need to install it manually.
First, I prepared a zip file for the installation files and put it in the cloud. Here are the steps that I use to install it using Command Line on Windows.
- Open up an elevated command prompt
- Create a temp directory
mkdir c:\temp
- Download the BigFix zip file
curl -L -o c:\temp\bigfix.zip https://url-to-the-zip-file
- Extract the files
tar -xf c:\temp\bigfix.zip -C c:\temp
- Install BigFix
c:\temp\BESClient-10.0.4.32\setup.exe /S /v"/qn /l*voicewarmup REBOOT=ReallySuppress MSIRESTARTMANAGERCONTROL=Disable"
Remember to substitute the url in step 3 and directory name in step 5 for your setup.
This post may contain affiliated links. When you click on the link and purchase a product, we receive a small commision to keep us running. Thanks.
Leave a Reply