Vbscript / Operating System / Add Remove Windows Vista Components
Add remove Windows Vista components using "ocsetup" which replaces "sysocmgr" used for Windows XP and Server 2003. The usage of "ocsetup" is shown below:
ocsetup.exe [/?] [/h] [/help] component [/log:file] [/norestart] [/passive] [/quiet] [/unattendfile:file] [/uninstall] [/x: parameter]
Example usage.
ocsetup MSMQ-Server /quiet ocsetup /unattendfile:c:\unattend.xml
Example answer file used with the unattendfile switch.
<?xml version="1.0"?> <unattend> <servicing> <package action="configure"> <assemblyIdentity name="Microsoft-Windows-Foundation-Package" version="6.0.5722.0" language="neutral" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" versionScope="nonSxS"/> <selection name="MSMQ-Multicast" state="true"/> <selection name="MSMQ-Server" state="true"/> <selection name="MSMQ-HTTP" state="true"/> <selection name="MSMQ-Triggers" state="true"/> <selection name="MSMQ-ADIntegration" state="true"/> <selection name="MSMQ-DCOMProxy" state="true"/> <selection name="MSMQ-RoutingServices" state="true"/> <selection name="MSMQ-DownlevelClient" state="true"/> </package> </servicing> </unattend>
Please note that a disclaimer applies to any code on this page.
|