3,217
edits
Changes
Tor
,no edit summary
== Simple installer ==
Use the following XML file to install it silently:
<presource lang="xml">
<?xml version="1.0" encoding="utf-8" ?>
<packages>
</packages>
</presource>
=== Advanced installer/upgrade ===
XML definition for WPKG (Tor.xml):
<presource lang="xml">
<?xml version="1.0" encoding="utf-8" ?>
<packages>
</packages>
</presource>
As you can see I am running my custom 'unattended.cmd' script. This script handles 32-bit as well as 64-bit installations.
Here's the code (unattended.cmd):
<presource lang="dos">
@echo off
exit /B %EXIT_CODE%
</predos>
As you can see I am calling taskkill.exe after installation. This is due to the fact that the Vidalia installer opens up a web-browser window. You just need to place the taskkill.exe command into the same folder where the installer is located (download it from Microsoft, Resource Kit Tools).
[[Category:Silent Installers]]