MSI switches and arguments (Office SharePoint Server)
Applies To: Office SharePoint Server 2007
This Office product will reach end of support on October 10, 2017. To stay supported, you will need to upgrade. For more information, see , Resources to help you upgrade your Office 2007 servers and clients.
Topic Last Modified: 2016-11-14
When you plan to install the entire toolkit, the Microsoft SharePoint Administration Toolkit installer supports the use of a quiet installation using the /quiet switch. However, to script partial installations, the following command must be used to extract the Msat.msi from MicrosoftSharePointAdministrationToolkit.exe:
MicrosoftSharePointAdministrationToolkit.exe /extract:<path>
where path is the location of where the extracted files will reside.
After the Msat.msi file has been extracted from the MicrosoftSharePointAdministrationToolkit.exe file, you can use the following feature IDs with the Msat.msi file.
Feature ID list and properties
The following table shows the feature IDs you would use when a quiet mode installation or uninstallation is run.
Feature | ID |
---|---|
Batch Site Manager |
BSM |
Entire SharePoint Administration Toolkit |
Toolkit |
updatealert operation |
UA |
User Profile Replication Engine |
RE |
Note
The User Profile Replication Engine is not supported for Windows SharePoint Services 3.0.
The following table shows the properties you would use when a quiet mode installation or uninstallation is run.
Property | Description |
---|---|
ADDLOCAL |
Indicates which tool is to be installed. |
ADDLOCALALL |
Indicates which tool and all tools under this tool to be installed. |
REMOVE |
Indicates which tool is to be uninstalled. |
UNREGISTERBSM |
Specifies whether to unregister BSM. Accepted values are Y or y. |
REPATH |
Specifies the installation folder for the User Profile Replication Engine. If no folder is specified, the default folder, C:\%Program Files%\Microsoft\Replication Engine, is used. |
Note
The arguments ADDLOCAL and REMOVE can be used in one command.
For additional information on the ADDLOCAL and REMOVE arguments, see ADDLOCAL property and REMOVE property.
Examples
To install the Batch Site Manager tool, use the following syntax:
msiexec /i Msat.msi /quiet ADDLOCAL=BSM
To uninstall the Batch Site Manager tool, use the following syntax:
msiexec /i Msat.msi /quiet REMOVE=BSM UNREGISTERBSM=Y
To install the Batch Site Manager and the updatealert operation, use the following syntax:
msiexec /i Msat.msi /quiet ADDLOCAL=BSM,UA
To install the User Profile Replication Engine, use the following syntax:
msiexec /i Msat.msi /quiet ADDLOCAL=RE
To install all the tools of the SharePoint Administration Toolkit, use the following syntax:
msiexec /i Msat.msi /quiet ADDLOCAL=Toolkit