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...)
(No difference)

Revision as of 16:15, 10 July 2008

This is two-step process; thanks to [[1][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='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' />                                                                             
  <upgrade cmd='msiexec /i "%SOFTWARE%\rktools\rktools.msi" /qn' />                                                                            
</package>