MSI Silent Install without Tray Icon
-
Found the post on the silent install but I am trying to push this via GPO and don’t want the tray icon. Anyone have any ideas?
-
@Psycholiquid
Here’s all the CLI options for the clientmsiexec /i FOGService.msi /quiet USETRAY="0" HTTPS="0" WEBADDRESS="192.168.1.X" WEBROOT="/" ROOTLOG="0"
Firstly, all options are optional. Here’s what they all do
USETRAY
: defaults to"1"
, if"0"
the tray will be hiddenHTTPS
: defaults to"0"
, if"1"
the client will use HTTPS (not recommended)WEBADDRESS
: defaults to"fog-server"
, this is the ip/dns name of your serverWEBROOT
: defaults to"/fog"
ROOTLOG
defaults to"0"
, if"1"
the fog.log will be atC:\fog.log
, otherwise%PROGRAMFILES%\FOG\fog.log
So for your question:
msiexec /i FOGService.msi /quiet USETRAY="0" WEBADDRESS="XX.XX.XX.XX"
-
@Jbob Sweet appreciate it.
-
@Jbob going into the wiki.
-
Added to Wiki here: https://wiki.fogproject.org/wiki/index.php/FOG_Client
-
Is there autostart option in Windows msi intsllataion?
Regards
-
@Uzzi Not on Windows as far as I know. But you can probably script that when installing. Depends on what software you use to deploy the MSI.