Index: /trunk/src/VBox/Installer/common/unattended_templates/debian_preseed.cfg
===================================================================
--- /trunk/src/VBox/Installer/common/unattended_templates/debian_preseed.cfg	(revision 67881)
+++ /trunk/src/VBox/Installer/common/unattended_templates/debian_preseed.cfg	(revision 67881)
@@ -0,0 +1,80 @@
+### Partitioning
+d-i partman-auto/disk string /dev/sda
+d-i partman-auto/method string regular
+d-i partman-lvm/device_remove_lvm boolean true
+d-i partman-md/device_remove_md boolean true
+d-i partman-auto/choose_recipe select atomic
+
+# This makes partman automatically partition without confirmation
+d-i partman-partitioning/confirm_write_new_label boolean true
+d-i partman/choose_partition select finish
+d-i partman/confirm boolean true
+d-i partman/confirm_nooverwrite boolean true
+
+# Locale
+d-i debian-installer/locale string en_US
+d-i console-setup/ask_detect boolean false
+d-i console-setup/layoutcode string us
+d-i keyboard-configuration/xkb-keymap select us
+
+# Network
+d-i netcfg/get_hostname string ubuntu
+d-i netcfg/get_domain string virtualMachine
+d-i netcfg/choose_interface select auto
+
+# Clock
+d-i clock-setup/utc-auto boolean true
+d-i clock-setup/utc boolean true
+d-i time/zone string US/Pacific
+d-i clock-setup/ntp boolean true
+
+# Packages, Mirrors, Image
+d-i base-installer/kernel/override-image string linux-server
+d-i base-installer/kernel/override-image string linux-image-amd64
+d-i mirror/country string US
+d-i mirror/http/proxy string
+d-i apt-setup/restricted boolean true
+d-i apt-setup/universe boolean true
+d-i pkgsel/install-language-support boolean false
+
+# Users
+d-i passwd/user-fullname string VBox user
+[change]d-i passwd/username string $user
+[change]d-i passwd/user-password password $password
+[change]d-i passwd/user-password-again password $password
+d-i passwd/root-login boolean true
+[change]d-i passwd/root-password password $password
+[change]d-i passwd/root-password-again password $password
+d-i user-setup/allow-password-weak boolean true
+d-i passwd/user-default-groups string admin
+
+# Grub
+d-i grub-installer/grub2_instead_of_grub_legacy boolean true
+d-i grub-installer/only_debian boolean true
+
+# Due notably to potential USB sticks, the location of the MBR can not be
+# determined safely in general, so this needs to be specified:
+#d-i grub-installer/bootdev  string /dev/sda
+# To install to the first device (assuming it is not a USB stick):
+d-i grub-installer/bootdev  string default
+
+d-i finish-install/reboot_in_progress note
+
+# Custom Commands
+d-i preseed/late_command string \
+mkdir /target/postinstall; \
+cd /target/postinstall; \
+touch post-install.sh; \
+echo '#!/bin/bash' >> post-install.sh; \
+echo 'apt-get -y install build-essential' >> post-install.sh; \
+echo 'apt-get -y install linux-headers-$(uname -r)' >> post-install.sh; \
+echo 'mkdir /mnt/cdrom' >> post-install.sh; \
+echo 'echo' >> post-install.sh; \
+echo 'echo "Installing VirtualBox Guest Additions..."' >> post-install.sh; \
+echo 'mount -t iso9660 -o ro /dev/sr1 /mnt/cdrom' >> post-install.sh; \
+echo 'bash /mnt/cdrom/VBoxLinuxAdditions.run' >> post-install.sh; \
+echo 'eject /dev/sr0' >> post-install.sh; \
+[change]echo 'usermod -a -G vboxsf $user' >> post-install.sh; \
+echo 'exit 0' >> post-install.sh; \
+chroot /target chmod +x /postinstall/post-install.sh; \
+chroot /target /bin/bash /postinstall/post-install.sh
Index: /trunk/src/VBox/Installer/common/unattended_templates/fedora_ks.cfg
===================================================================
--- /trunk/src/VBox/Installer/common/unattended_templates/fedora_ks.cfg	(revision 67881)
+++ /trunk/src/VBox/Installer/common/unattended_templates/fedora_ks.cfg	(revision 67881)
@@ -0,0 +1,77 @@
+#platform=x86, AMD64, or Intel EM64T
+#version=DEVEL
+
+# Firewall configuration
+firewall --disabled
+
+# Install OS instead of upgrade
+install
+
+# Use CDROM installation media
+cdrom
+
+# Root password
+rootpw --plaintext @@VBOX_INSERT_ROOT_PASSWORD_SH@@
+
+# System authorization information
+auth  --useshadow  --passalgo=sha512
+
+# Use text mode install
+text
+
+# System keyboard
+keyboard us
+
+# System language
+lang en_US
+
+# SELinux configuration
+selinux --enforcing
+
+# Installation logging level
+logging --level=info
+
+# System timezone
+timezone  Europe/London
+
+# Network information
+network  --bootproto=dhcp --device=eth0 --onboot=on
+
+# System bootloader configuration
+bootloader --location=mbr --append="nomodeset crashkernel=auto rhgb quiet"
+zerombr
+
+# Partition clearing information
+clearpart --all --initlabel
+# Disk partitioning information
+part / --fstype ext4 --size 6000 --grow --asprimary 
+part swap --size 1024 
+
+#Initial user
+user --name=@@VBOX_INSERT_USER_LOGIN_SH@@ --password=@@VBOX_INSERT_USER_PASSWORD_SH@@
+
+# Reboot after installation
+reboot
+
+%packages
+@standard
+@hardware-support
+%end
+
+%post --log=/root/ks-post.log
+yum -y install "kernel-devel-$(uname -r)"
+yum -y install gcc
+
+@@VBOX_COND_IS_INSTALLING_ADDITIONS@@
+mkdir -p /mnt/cdrom
+mount -o ro /dev/sr2 /mnt/cdrom
+echo
+echo "Installing VirtualBox Guest Additions..."
+bash /mnt/cdrom/VBoxLinuxAdditions.run
+usermod -a -G vboxsf @@VBOX_INSERT_USER_LOGIN_SH@@
+@@VBOX_COND_END@@
+eject /dev/sr0
+eject /dev/sr1
+eject /dev/sr2
+init 5
+%end
Index: /trunk/src/VBox/Installer/common/unattended_templates/ol_ks.cfg
===================================================================
--- /trunk/src/VBox/Installer/common/unattended_templates/ol_ks.cfg	(revision 67881)
+++ /trunk/src/VBox/Installer/common/unattended_templates/ol_ks.cfg	(revision 67881)
@@ -0,0 +1,86 @@
+#platform=x86, AMD64, or Intel EM64T
+#version=DEVEL
+
+# Firewall configuration
+firewall --disabled
+
+# Install OS instead of upgrade
+install
+
+# Use CDROM installation media
+cdrom
+
+# Root password
+rootpw --plaintext @@VBOX_INSERT_ROOT_PASSWORD_SH@@
+
+# System authorization information
+auth  --useshadow  --passalgo=sha512
+
+# Use text mode install
+text
+
+# System keyboard
+keyboard us
+
+# System language
+lang en_US
+
+# Disable the unsupported hardware popup (vmmdev?).
+unsupported_hardware
+
+# SELinux configuration
+selinux --enforcing
+
+# Installation logging level
+logging --level=info
+
+# System timezone
+timezone  Europe/London
+
+# Network information
+network  --bootproto=dhcp --device=eth0 --onboot=on
+
+# System bootloader configuration
+bootloader --location=mbr --append="nomodeset crashkernel=auto rhgb quiet"
+zerombr
+
+# Partition clearing information
+clearpart --all --initlabel
+
+# Disk partitioning information
+part / --fstype ext4 --size 6000 --grow --asprimary 
+part swap --size 1024 
+
+#Initial user
+user --name=@@VBOX_INSERT_USER_LOGIN_SH@@ --password=@@VBOX_INSERT_USER_PASSWORD_SH@@
+
+# Reboot after installation
+reboot
+
+## @todo @gnome-desktop is missing in OL-6.4
+%packages
+@base
+@core
+@development
+@gnome-desktop
+@desktop-debugging
+@fonts
+@graphical-admin-tools
+@remote-desktop-clients
+@x11
+%end
+
+%post --log=/root/ks-post.log
+@@VBOX_COND_IS_INSTALLING_ADDITIONS@@
+mkdir -p /mnt/cdrom
+mount -o ro /dev/sr2 /mnt/cdrom
+echo
+echo "Installing VirtualBox Guest Additions..."
+bash /mnt/cdrom/VBoxLinuxAdditions.run
+usermod -a -G vboxsf @@VBOX_INSERT_USER_LOGIN_SH@@
+@@VBOX_COND_END@@
+eject /dev/sr0
+eject /dev/sr1
+eject /dev/sr2
+init 5
+%end
Index: /trunk/src/VBox/Installer/common/unattended_templates/redhat67_ks.cfg
===================================================================
--- /trunk/src/VBox/Installer/common/unattended_templates/redhat67_ks.cfg	(revision 67881)
+++ /trunk/src/VBox/Installer/common/unattended_templates/redhat67_ks.cfg	(revision 67881)
@@ -0,0 +1,85 @@
+#platform=x86, AMD64, or Intel EM64T
+#version=DEVEL
+
+# Firewall configuration
+firewall --disabled
+
+# Install OS instead of upgrade
+install
+
+# Use CDROM installation media
+cdrom
+
+# Root password
+rootpw --plaintext @@VBOX_INSERT_ROOT_PASSWORD_SH@@
+
+# System authorization information
+auth  --useshadow  --passalgo=sha512
+
+# Use text mode install
+text
+
+# System keyboard
+keyboard us
+
+# System language
+lang en_US
+
+# SELinux configuration
+selinux --enforcing
+
+# Installation logging level
+logging --level=info
+
+# System timezone
+timezone  Europe/London
+
+# Network information
+network  --bootproto=dhcp --device=eth0 --onboot=on
+
+# System bootloader configuration
+bootloader --location=mbr --append="nomodeset crashkernel=auto rhgb quiet"
+zerombr
+
+# Partition clearing information
+clearpart --all --initlabel
+
+# Disk partitioning information
+part / --fstype ext4 --size 6000 --grow --asprimary 
+part swap --size 1024 
+
+#Initial user
+user --name=@@VBOX_INSERT_USER_LOGIN_SH@@ --password=@@VBOX_INSERT_USER_PASSWORD_SH@@
+
+# Reboot after installation
+reboot
+
+%packages
+@base
+@core
+@development
+@basic-desktop
+@desktop-debugging
+@desktop-platform
+@fonts
+@general-desktop
+@graphical-admin-tools
+@remote-desktop-clients
+@x11
+
+%end
+
+%post --log=/root/ks-post.log
+@@VBOX_COND_IS_INSTALLING_ADDITIONS@@
+mkdir -p /mnt/cdrom
+mount -o ro /dev/sr2 /mnt/cdrom
+echo
+echo "Installing VirtualBox Guest Additions..."
+bash /mnt/cdrom/VBoxLinuxAdditions.run
+usermod -a -G vboxsf @@VBOX_INSERT_USER_LOGIN_SH@@
+@@VBOX_COND_END@@
+eject /dev/sr0
+eject /dev/sr1
+eject /dev/sr2
+init 5
+%end
Index: /trunk/src/VBox/Installer/common/unattended_templates/suse_autoinstall.xml
===================================================================
--- /trunk/src/VBox/Installer/common/unattended_templates/suse_autoinstall.xml	(revision 67881)
+++ /trunk/src/VBox/Installer/common/unattended_templates/suse_autoinstall.xml	(revision 67881)
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE profile>
+<profile xmlns="http://www.suse.com/1.0/yast2ns" xmlns:config="http://www.suse.com/1.0/configns">
+  <general>
+    <mode>
+      <confirm config:type="boolean">false</confirm>
+    </mode>
+  </general>
+
+  <partitioning config:type="list">
+    <drive>
+      <use>all</use>
+    </drive>
+  </partitioning>
+
+  <software>
+    <!-- Those are necessray for Guest Additions -->
+    <packages config:type="list">
+      <package>gcc</package>
+      <package>automake</package>
+      <package>kernel-source</package>
+      <!-- 'smpppd' is required on openSUSE 11.4 -->
+      <package>smpppd</package>
+    </packages>
+    
+    <patterns config:type="list">
+      <pattern>apparmor</pattern>
+      <pattern>apparmor_opt</pattern>
+      <pattern>base</pattern>
+      <pattern>kde</pattern>
+      <!--pattern>Basis-Devel</pattern-->
+      <!--pattern>devel_kernel</pattern-->
+      <pattern>default</pattern>
+      <pattern>sw_management</pattern>
+      <pattern>sw_management_kde4</pattern>
+      <pattern>yast2_install_wf</pattern>
+    </patterns>
+  </software>
+
+  <configure>
+    <x11>
+      <display_manager>kdm</display_manager>
+    </x11>
+
+    <networking>
+      <interfaces config:type="list">
+        <interface>
+          <bootproto>dhcp</bootproto>
+          <device>eth0</device>
+          <startmode>auto</startmode>
+          <usercontrol>yes</usercontrol>
+        </interface>
+      </interfaces>
+    </networking>
+
+    <users config:type="list">
+      <user>
+        <fullname>root</fullname>
+        <username>root</username>
+        <encrypted config:type="boolean">false</encrypted>
+        <user_password>$password</user_password>
+      </user>
+      <user>
+        <groups>video,dialout,vboxsf</groups>
+        <fullname>$user</fullname>
+        <username>$user</username>
+        <encrypted config:type="boolean">false</encrypted>
+        <user_password>$password</user_password>
+      </user>
+    </users>
+  </configure>
+</profile>
Index: /trunk/src/VBox/Installer/common/unattended_templates/ubuntu_preseed.cfg
===================================================================
--- /trunk/src/VBox/Installer/common/unattended_templates/ubuntu_preseed.cfg	(revision 67881)
+++ /trunk/src/VBox/Installer/common/unattended_templates/ubuntu_preseed.cfg	(revision 67881)
@@ -0,0 +1,80 @@
+### Partitioning
+d-i partman-auto/disk string /dev/sda
+d-i partman-auto/method string regular
+d-i partman-lvm/device_remove_lvm boolean true
+d-i partman-md/device_remove_md boolean true
+d-i partman-auto/choose_recipe select atomic
+
+# This makes partman automatically partition without confirmation
+d-i partman-partitioning/confirm_write_new_label boolean true
+d-i partman/choose_partition select finish
+d-i partman/confirm boolean true
+d-i partman/confirm_nooverwrite boolean true
+
+# Locale
+d-i debian-installer/locale string en_US
+d-i console-setup/ask_detect boolean false
+d-i console-setup/layoutcode string us
+d-i keyboard-configuration/xkb-keymap select us
+
+# Network
+d-i netcfg/get_hostname string ubuntu
+d-i netcfg/get_domain string virtualMachine
+d-i netcfg/choose_interface select auto
+
+# Clock
+d-i clock-setup/utc-auto boolean true
+d-i clock-setup/utc boolean true
+d-i time/zone string US/Pacific
+d-i clock-setup/ntp boolean true
+
+# Packages, Mirrors, Image
+d-i base-installer/kernel/override-image string linux-server
+d-i base-installer/kernel/override-image string linux-image-amd64
+d-i mirror/country string US
+d-i mirror/http/proxy string
+d-i apt-setup/restricted boolean true
+d-i apt-setup/universe boolean true
+d-i pkgsel/install-language-support boolean false
+
+# Users
+d-i passwd/user-fullname string VBox user
+[change]d-i passwd/username string $user
+[change]d-i passwd/user-password password $password
+[change]d-i passwd/user-password-again password $password
+d-i passwd/root-login boolean true
+[change]d-i passwd/root-password password $password
+[change]d-i passwd/root-password-again password $password
+d-i user-setup/allow-password-weak boolean true
+d-i passwd/user-default-groups string admin
+
+# Grub
+d-i grub-installer/grub2_instead_of_grub_legacy boolean true
+d-i grub-installer/only_debian boolean true
+
+# Due notably to potential USB sticks, the location of the MBR can not be
+# determined safely in general, so this needs to be specified:
+#d-i grub-installer/bootdev  string /dev/sda
+# To install to the first device (assuming it is not a USB stick):
+d-i grub-installer/bootdev  string default
+
+d-i finish-install/reboot_in_progress note
+
+# Custom Commands
+d-i preseed/late_command string \
+mkdir /target/postinstall; \
+cd /target/postinstall; \
+touch post-install.sh; \
+echo '#!/bin/bash' >> post-install.sh; \
+echo 'apt-get -y install build-essential' >> post-install.sh; \
+echo 'apt-get -y install linux-headers-$(uname -r)' >> post-install.sh; \
+echo 'mkdir /mnt/cdrom' >> post-install.sh; \
+echo 'echo' >> post-install.sh; \
+echo 'echo "Installing VirtualBox Guest Additions..."' >> post-install.sh; \
+echo 'mount -t iso9660 -o ro /dev/sr1 /mnt/cdrom' >> post-install.sh; \
+echo 'bash /mnt/cdrom/VBoxLinuxAdditions.run' >> post-install.sh; \
+echo 'eject /dev/sr0' >> post-install.sh; \
+[change]echo 'usermod -a -G vboxsf $user' >> post-install.sh; \
+echo 'exit 0' >> post-install.sh; \
+chroot /target chmod +x /postinstall/post-install.sh; \
+chroot /target /bin/bash /postinstall/post-install.sh
Index: /trunk/src/VBox/Installer/common/unattended_templates/win_nt5_unattended.sif
===================================================================
--- /trunk/src/VBox/Installer/common/unattended_templates/win_nt5_unattended.sif	(revision 67881)
+++ /trunk/src/VBox/Installer/common/unattended_templates/win_nt5_unattended.sif	(revision 67881)
@@ -0,0 +1,61 @@
+;SetupMgrTag
+[Data]
+    AutoPartition = 1
+    MsDosInitiated = "0"
+    UnattendedInstall = "Yes"
+
+[Unattended]
+    UnattendMode = FullUnattended
+    OemSkipEula = Yes
+    OemPreinstall = No
+    TargetPath = \WINDOWS
+    Repartition = Yes
+    UnattendSwitch = "Yes"
+    DriverSigningPolicy = Ignore
+    WaitForReboot = "No"
+
+[GuiUnattended]
+    AdminPassword = "@@VBOX_INSERT_USER_PASSWORD@@"
+    EncryptedAdminPassword = No
+    AutoLogon = Yes
+    OEMSkipRegional = 1
+    OemSkipWelcome = 1
+; TODO: Make timezone configurable?
+    TimeZone = 85
+    OemSkipWelcome = 1
+
+[UserData]
+; ProductKey was introduced in XP, ProductID was used in 2K and earlier.
+    ProductKey = "@@VBOX_INSERT_PRODUCT_KEY@@"
+    ProductID = "@@VBOX_INSERT_PRODUCT_KEY@@"
+    FullName = "@@VBOX_INSERT_USER_LOGIN@@"
+    OrgName = ""
+; TODO: Make computer name configurable, defaulting to a mangled (for NT) VM name.
+    ComputerName = *
+
+[RegionalSettings]
+; TODO: Make language groups configurable?
+;   LanguageGroup=1,2,3,4,5 - needed for us+russian?
+    LanguageGroup=1
+; TODO: Make system+user locale configurable.
+; 0409:00000409 is US.
+;    SystemLocale=00000419 - russian
+; TODO: Make Input locale configurable?
+;    InputLocale=0409:00000409,0419:00000419 - US,Russian
+
+[LicenseFilePrintData]
+; This section is used for server installs.
+    AutoMode = "PerServer"
+    AutoUsers = "5"
+
+[Identification]
+    JoinWorkgroup = WORKGROUP
+
+[Networking]
+    InstallDefaultComponents = Yes
+
+@@VBOX_COND_IS_INSTALLING_ADDITIONS@@
+[GuiRunOnce]
+    Command0="E:\VBoxWindowsAdditions.exe"
+@@VBOX_COND_END@@
+
Index: /trunk/src/VBox/Installer/common/unattended_templates/win_nt6_unattended.xml
===================================================================
--- /trunk/src/VBox/Installer/common/unattended_templates/win_nt6_unattended.xml	(revision 67881)
+++ /trunk/src/VBox/Installer/common/unattended_templates/win_nt6_unattended.xml	(revision 67881)
@@ -0,0 +1,119 @@
+<?xml version="1.0" encoding="utf-8"?>
+<unattend xmlns="urn:schemas-microsoft-com:unattend" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State">
+
+  <settings pass="windowsPE">
+    <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="$arch" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
+      <InputLocale>en-US</InputLocale>
+      <SystemLocale>en-US</SystemLocale>
+      <UILanguage>en-US</UILanguage>
+      <UserLocale>en-US</UserLocale>
+    </component>
+    
+    <component name="Microsoft-Windows-Setup" processorArchitecture="$arch" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
+
+      <DiskConfiguration>
+      <WillShowUI>OnError</WillShowUI>
+        <Disk>
+        <DiskID>0</DiskID>
+        <WillWipeDisk>true</WillWipeDisk>
+        <CreatePartitions>
+          <CreatePartition>
+            <Order>1</Order>
+            <Type>Primary</Type>
+            <Extend>true</Extend>
+          </CreatePartition>
+        </CreatePartitions>
+        </Disk>
+    </DiskConfiguration>
+
+    <UserData>
+      <ProductKey>
+        <Key>$ProductKey</Key>
+        <WillShowUI>OnError</WillShowUI>
+      </ProductKey>
+      <AcceptEula>true</AcceptEula>
+    </UserData>
+
+    <ImageInstall>
+      <OSImage>
+        <InstallFrom>
+          <MetaData wcm:action="add">
+            <Key>IMAGE/INDEX</Key>
+            <Value>1</Value>
+          </MetaData>
+          <Path>d:\sources\install.wim</Path>
+        </InstallFrom>
+        <InstallTo>
+          <DiskID>0</DiskID>
+          <PartitionID>1</PartitionID>
+        </InstallTo>
+        <WillShowUI>OnError</WillShowUI>
+        <InstallToAvailablePartition>false</InstallToAvailablePartition>
+      </OSImage>
+    </ImageInstall>
+    
+    <ComplianceCheck>
+      <DisplayReport>OnError</DisplayReport>
+    </ComplianceCheck>
+    </component>
+  </settings>
+
+  <settings pass="oobeSystem">
+    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="$arch" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
+      <AutoLogon>
+      <Password>
+        <Value>$password</Value> 
+        <PlainText>true</PlainText>
+      </Password>
+      <Enabled>true</Enabled> 
+      <Username>$user</Username> 
+      </AutoLogon>
+
+      <UserAccounts>
+      <LocalAccounts>
+        <LocalAccount wcm:action="add">
+        <Name>$user</Name>
+        <Group>administrators;users</Group>
+        <Password>
+          <Value>$password</Value>
+          <PlainText>true</PlainText>
+        </Password>
+        </LocalAccount>
+      </LocalAccounts>
+      </UserAccounts>
+
+      <VisualEffects>
+        <FontSmoothing>ClearType</FontSmoothing>
+      </VisualEffects>
+
+      <OOBE>
+        <ProtectYourPC>3</ProtectYourPC>
+        <HideEULAPage>true</HideEULAPage>
+        <SkipUserOOBE>true</SkipUserOOBE>
+        <SkipMachineOOBE>true</SkipMachineOOBE>
+        <NetworkLocation>Home</NetworkLocation>
+      </OOBE>
+
+      <FirstLogonCommands>
+        <SynchronousCommand wcm:action="add">
+          <Order>1</Order>
+          <Description>Turn Off Network Selection pop-up</Description>
+          <CommandLine>cmd /c reg add "HKLM\SYSTEM\CurrentControlSet\Control\Network\NewNetworkWindowOff"</CommandLine>
+        </SynchronousCommand>
+        <SynchronousCommand wcm:action="add">
+          <Order>2</Order>
+          <Description>Install Oracle certificate</Description>
+          <CommandLine>cmd /c for %i in (e:\cert\vbox*.cer) do certutil -addstore -f "TrustedPublisher" %i</CommandLine>
+        </SynchronousCommand>
+        <SynchronousCommand wcm:action="add">
+          <Order>3</Order>
+          <Description>Install VirtualBox Guest Additions</Description>
+          <CommandLine>e:\VBoxWindowsAdditions.exe /S</CommandLine>
+        </SynchronousCommand>
+      </FirstLogonCommands>
+
+      <TimeZone>GMT Standard Time</TimeZone>
+    </component>
+
+  </settings>
+</unattend>
