diff --git a/doc/win_install.php b/doc/win_install.php index 273f872f32..ff1817451a 100644 --- a/doc/win_install.php +++ b/doc/win_install.php @@ -78,6 +78,49 @@ plus the following parameters: Parameter Description + + INSTALLDIR + + The location to install BOINC too.
+ Example: 'C:\\BOINC' + + + + SETUPTYPE + + The type of installation to perform.
+ Valid Values: 'Single'. + + + + ALLUSERS + + Whether the shortcuts appear for just one user or all users.
+ Valid Values: '0' for Single. + + + + ENABLESCREENSAVER + + Whether to automatically enable the screensaver.
+ Valid Values: '0' for disabled, '1' for enabled. + + + + ENABLELAUNCHATLOGON + + Whether to automatically start BOINC when the installing user or all + users signon to the computer.
+ Valid Values: '0' for disabled, '1' for enabled. + + + + LAUNCHPROGRAM + + Whether to automatically launch BOINC Manager after setup completes.
+ Valid Values: '0' for disabled, '1' for enabled. + +
  • Shared install:
    @@ -85,6 +128,49 @@ plus the following parameters: + + + + + + + + + + + + + + + + + + + + + + + +
    Parameter Description
    INSTALLDIR + The location to install BOINC too.
    + Example: 'C:\\BOINC' +
    SETUPTYPE + The type of installation to perform.
    + Valid Values: 'Shared'. +
    ALLUSERS + Whether the shortcuts appear for just one user or all users.
    + Valid Values: '1' for shared. +
    ENABLESCREENSAVER + Whether to automatically enable the screensaver.
    + Valid Values: '0' for disabled, '1' for enabled. +
    ENABLELAUNCHATLOGON + Whether to automatically start BOINC when the installing user or all + users signon to the computer.
    + Valid Values: '0' for disabled, '1' for enabled. +
    LAUNCHPROGRAM + Whether to automatically launch BOINC Manager after setup completes.
    + Valid Values: '0' for disabled, '1' for enabled. +
  • Service Install:
    @@ -92,18 +178,73 @@ plus the following parameters: + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Parameter Description
    INSTALLDIR + The location to install BOINC too.
    + Example: 'C:\\BOINC' +
    SETUPTYPE + The type of installation to perform.
    + Valid Values: 'Service'. +
    ALLUSERS + Whether the shortcuts appear for just one user or all users.
    + Valid Values: '1' for service. +
    ENABLESCREENSAVER + Whether to automatically enable the screensaver.
    + Valid Values: '0' for disabled, '1' for enabled. +
    ENABLELAUNCHATLOGON + Whether to automatically start BOINC when the installing user or all + users signon to the computer.
    + Valid Values: '0' for disabled, '1' for enabled. +
    LAUNCHPROGRAM + Whether to automatically launch BOINC Manager after setup completes.
    + Valid Values: '0' for disabled, '1' for enabled. +
    SERVICE_DOMAINUSERNAME + Whether to automatically launch BOINC Manager after setup completes.
    + Valid Values: '0' for disabled, '1' for enabled. +
    -
  • The global property ACCOUNTS_LOCATION specifies -(either in UNC or drive:path format) -a directory containing initial account files (normally null). -You can edit this to point to the account file you want. -For large-scale deployments it is probably safer -to use UNC paths.

    Command line deployment

    +An example for the single-user install would be: + +msiexec /i boinc.msi /qn /l c:\boincsetup.log SETUPTYPE='Single' ALLUSERS=0 ENABLESCREENSAVER=0 ENABLELAUNCHATLOGON=0 LAUCHPROGRAM=0 + +An example for the shared install would be: + +msiexec /i boinc.msi /qn /l c:\boincsetup.log SETUPTYPE='Shared' ALLUSERS=1 ENABLESCREENSAVER=0 ENABLELAUNCHATLOGON=0 LAUCHPROGRAM=0 + +An example for the service install would be: + +msiexec /i boinc.msi /qn /l c:\boincsetup.log SETUPTYPE='Service' ALLUSERS=0 ENABLESCREENSAVER=0 ENABLELAUNCHATLOGON=0 LAUCHPROGRAM=0 SERVICE_DOMAINUSERNAME='%ComputerName%\\%UserName%' SERVICE_PASSWORD='%Password%' SERVICE_GRANTEXECUTIONRIGHT=1

    Technical details