Difference between revisions of "Microsoft Server 2003 Resource Kit"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(New page: This is two-step process; thanks to [[http://remstate.com/2008/05/21/the-windows-resource-kit/][REM State]] for the details. First, download the Microsoft Windows Server 2003 Resource Kit...)
 
Line 1: Line 1:
This is two-step process; thanks to [[http://remstate.com/2008/05/21/the-windows-resource-kit/][REM State]] for the details.
+
This is two-step process; thanks to [http://remstate.com/2008/05/21/the-windows-resource-kit/ REM State] for the details.
  
 
First, download the Microsoft Windows Server 2003 Resource Kit from Microsoft; this is an .exe file.  Next, run:
 
First, download the Microsoft Windows Server 2003 Resource Kit from Microsoft; this is an .exe file.  Next, run:
Line 13: Line 13:
 
<package id='rktools2003' name='Windows Server 2003 Resource Kit' revision='1' priority='50' reboot='false' >                                   
 
<package id='rktools2003' name='Windows Server 2003 Resource Kit' revision='1' priority='50' reboot='false' >                                   
 
   <!-- 7-Zip file packer -->                                                                                                                   
 
   <!-- 7-Zip file packer -->                                                                                                                   
   <check type='uninstall' condition='exists' path='C:\Program Files\Windows Resource Kit\Tools' />                                             
+
   <check type='uninstall' condition='exists' path='Windows Resource Kit Tools' />                                             
 
   <install cmd='msiexec /qn /i "%SOFTWARE%\rktools\rktools.msi" RKTOOLS="C:\Program Files\Windows Resource Kit\Tools"' />                       
 
   <install cmd='msiexec /qn /i "%SOFTWARE%\rktools\rktools.msi" RKTOOLS="C:\Program Files\Windows Resource Kit\Tools"' />                       
 
   <remove cmd='msiexec /x "%SOFTWARE%\rktools\rktools.msi" /qn' />                                                                             
 
   <remove cmd='msiexec /x "%SOFTWARE%\rktools\rktools.msi" /qn' />                                                                             

Revision as of 16:22, 10 July 2008

This is two-step process; thanks to REM State for the details.

First, download the Microsoft Windows Server 2003 Resource Kit from Microsoft; this is an .exe file. Next, run:

rktools.exe /T:C:\Temp\rktools /C

to extract the cab file to C:\Temp\rktools. Copy that to the repository and use this XML for the package file:

                                                                                                                                              
<package id='rktools2003' name='Windows Server 2003 Resource Kit' revision='1' priority='50' reboot='false' >                                  
  <!-- 7-Zip file packer -->                                                                                                                   
  <check type='uninstall' condition='exists' path='Windows Resource Kit Tools' />                                             
  <install cmd='msiexec /qn /i "%SOFTWARE%\rktools\rktools.msi" RKTOOLS="C:\Program Files\Windows Resource Kit\Tools"' />                      
  <remove cmd='msiexec /x "%SOFTWARE%\rktools\rktools.msi" /qn' />                                                                             
  <upgrade cmd='msiexec /i "%SOFTWARE%\rktools\rktools.msi" /qn' />                                                                            
</package>