Difference between revisions of "FOG Client"

From FOG Project
Jump to: navigation, search
Line 6: Line 6:
  
 
= FOG 1.3.0 Client =
 
= FOG 1.3.0 Client =
 +
 +
== FOG Client 0.9.9+ Installation options ==
 +
 +
<pre>msiexec /i FOGService.msi /quiet USETRAY="0" HTTPS="0" WEBADDRESS="192.168.1.X" WEBROOT="/" ROOTLOG="0"</pre>
 +
 +
Firstly, all options are optional. Here’s what they all do:
 +
 +
*USETRAY: defaults to "1", if "0" the tray will be hidden
 +
 +
*HTTPS: 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 server
 +
 +
*WEBROOT: defaults to "/fog"
 +
 +
*ROOTLOG defaults to "0", if "1" the fog.log will be at C:\fog.log, otherwise %PROGRAMFILES%\FOG\fog.log
 +
 +
Reference: [https://forums.fogproject.org/topic/6222/msi-silent-install-without-tray-icon/2 MSI Silent Install without Tray Icon]
  
 
== Manually reset encryption on ALL hosts ==
 
== Manually reset encryption on ALL hosts ==
  
<pre>UPDATE hosts SET hostPubKey="", hostSecToken="", hostSecTime="0000-00-00 00:00:00";</pre>
+
<pre>
 +
mysql
 +
use fog
 +
UPDATE hosts SET hostPubKey="", hostSecToken="", hostSecTime="0000-00-00 00:00:00";</pre>

Revision as of 05:35, 13 December 2015

Article under construction - below you will find notes / gibberish that has slowly been collected to make an article out of.

Be thoughtful and only use what you need. Feel free to ask questions in the forums.


FOG 1.3.0 Client

FOG Client 0.9.9+ Installation options

msiexec /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 hidden
  • HTTPS: 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 server
  • WEBROOT: defaults to "/fog"
  • ROOTLOG defaults to "0", if "1" the fog.log will be at C:\fog.log, otherwise %PROGRAMFILES%\FOG\fog.log

Reference: MSI Silent Install without Tray Icon

Manually reset encryption on ALL hosts

mysql
use fog
UPDATE hosts SET hostPubKey="", hostSecToken="", hostSecTime="0000-00-00 00:00:00";