|
server
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Sysocmgr.exe tool you can add or remove Windows components.
Hi All,
I am trying to add "Management and Monitoring Tools" component using Sysocmgr.exe with a script. If you could help me on this, I really appreciate this. This is very urgent, Regards, Ersin It is pretty easy. You use a answer file that has an ini file format with a
Components section like an unattend.txt for example, to add all the Management and Monitoring tools it would look like this -->8 [Components] Netoc=On WbemMSI=1 [NetOptionalComponents] NetCMAK=1 NetCPS=1 NetMonTools=1 SNMP=1 WBEMSNMP=1 -->8 Then follow this article about how to call it. These references were taken from the ref.chm in the deploy.cab on the Windows Server CD http://support.microsoft.com/kb/222444 Cheers, Jeremy. Show quote "Ersin INAN" <Ersin I***@discussions.microsoft.com> wrote in message news:B73B05BA-0407-41D8-A8F6-015918888573@microsoft.com... > Hi All, > > I am trying to add "Management and Monitoring Tools" component using > Sysocmgr.exe with a script. > > If you could help me on this, I really appreciate this. > > This is very urgent, > > Regards, > > Ersin Dear Jeremy,
Thank you so much for your great help. Now I have one more problem. When I run the script, asking for the XP installation files. Can I also put this path inside the script somehow ? Actually what we are trying to do is to force this installation through AD. Again thank you so much :), Regards, Ersin INAN Show quote "Jeremy" wrote: > It is pretty easy. You use a answer file that has an ini file format with a > Components section like an unattend.txt for example, to add all the > Management and Monitoring tools it would look like this > > -->8 > [Components] > Netoc=On > WbemMSI=1 > > [NetOptionalComponents] > NetCMAK=1 > NetCPS=1 > NetMonTools=1 > SNMP=1 > WBEMSNMP=1 > > -->8 > Then follow this article about how to call it. These references were taken > from the ref.chm in the deploy.cab on the Windows Server CD > > http://support.microsoft.com/kb/222444 > > Cheers, > Jeremy. > > "Ersin INAN" <Ersin I***@discussions.microsoft.com> wrote in message > news:B73B05BA-0407-41D8-A8F6-015918888573@microsoft.com... > > Hi All, > > > > I am trying to add "Management and Monitoring Tools" component using > > Sysocmgr.exe with a script. > > > > If you could help me on this, I really appreciate this. > > > > This is very urgent, > > > > Regards, > > > > Ersin > The WbemMSI component should use a On | Off switch instead of 0 or 1. I
used
Code: -------------------- [Components] WbemMSI = 1 -------------------- in c:\answer.txt and ran %windir%\system32\sysocmgr.exe /i:%windir%\inf\sysoc.inf /u:c:\answer.txt. The WMI windows installer provider was not installed. There is a 'page' (http://technet2.microsoft.com/windowsserver/en/library/9f657102-373f-4032-8ca6-eaf63ba17ecf1033.mspx?mfr=true) of all the components. Search for WbemMSI; it tells you WbemMSI = On | Off. Code: -------------------- [Components] WbemMSI = On -------------------- would be the correct answer file for installing WMI windows installer provider. by default, 'it's not installed on Windows server 2003' (http://msdn2.microsoft.com/en-us/library/aa392726.aspx). -- hil ------------------------------------------------------------------------ hil's Profile: http://forums.techarena.in/member.php?userid=36111 View this thread: http://forums.techarena.in/showthread.php?t=738510http://forums.techarena.in |
|||||||||||||||||||||||