5
edits
Changes
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...
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:
<pre>
rktools.exe /T:C:\Temp\rktools /C
</pre>
to extract the cab file to C:\Temp\rktools. Copy that to the repository and use this XML for the package file:
<source lang="xml">
<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>
</source>
[[Category:Silent Installers]]
First, download the Microsoft Windows Server 2003 Resource Kit from Microsoft; this is an .exe file. Next, run:
<pre>
rktools.exe /T:C:\Temp\rktools /C
</pre>
to extract the cab file to C:\Temp\rktools. Copy that to the repository and use this XML for the package file:
<source lang="xml">
<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>
</source>
[[Category:Silent Installers]]