new file mode 100644
@@ -0,0 +1,36 @@
+install
+cdrom
+text
+reboot
+lang en_US
+keyboard us
+network --bootproto dhcp
+rootpw 123456
+firewall --enabled --ssh
+selinux --enforcing
+timezone --utc America/New_York
+firstboot --disable
+bootloader --location=mbr
+zerombr
+
+clearpart --all --initlabel
+part /boot --fstype=ext3 --size=100
+part / --fstype=ext3 --size=2000
+part swap --fstype=swap --size=512
+
+%packages
+@ Base
+%end
+
+%post --interpreter /usr/bin/python
+import socket, os
+os.system('iptables -F')
+os.system('echo 0 > /selinux/enforce')
+port = 12323
+buf = 1024
+addr = ('10.0.0.2', port)
+client = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
+client.connect(addr)
+client.sendto('done', addr)
+client.close()
+%end
\ No newline at end of file
new file mode 100644
@@ -0,0 +1,12 @@
+@rem SetupMgrTag
+@echo off
+
+rem
+rem This is a SAMPLE batch script generated by Setup Manager.
+rem If this script is moved from the location where it was generated, it may have to be modified.
+rem
+
+set AnswerFile=.\winnt.sif
+set SetupFiles=D:\i386
+
+D:\i386\winnt32 /s:%SetupFiles% /unattend:%AnswerFile%
new file mode 100644
@@ -0,0 +1,72 @@
+;SetupMgrTag
+[Data]
+ AutoPartition=1
+ MsDosInitiated="0"
+ UnattendedInstall="Yes"
+
+[Unattended]
+ Repartition=Yes
+ UnattendMode=FullUnattended
+ OemSkipEula=Yes
+ OemPreinstall=No
+ TargetPath=\WINDOWS
+ UnattendSwitch=Yes
+ CrashDumpSetting=1
+ DriverSigningPolicy=ignore
+ WaitForReboot=no
+
+[GuiUnattended]
+ AdminPassword="123456"
+ EncryptedAdminPassword=NO
+ TimeZone=85
+ OemSkipWelcome=1
+ AutoLogon=Yes
+ AutoLogonCount=1
+ OEMSkipRegional=1
+
+[UserData]
+ ProductKey=[replace-with-your-prodkey]
+ FullName="Autotest Mindless Drone"
+ OrgName="Autotest"
+ ComputerName=*
+
+[Identification]
+ JoinWorkgroup=WORKGROUP
+
+[Networking]
+ InstallDefaultComponents=Yes
+
+[Proxy]
+ Proxy_Enable=0
+ Use_Same_Proxy=0
+
+[Components]
+ dialer=off
+ media_clips=off
+ media_utopia=off
+ msnexplr=off
+ netoc=off
+ OEAccess=off
+ templates=off
+ WMAccess=off
+ zonegames=off
+
+[TerminalServices]
+ AllowConnections=1
+
+[WindowsFirewall]
+ Profiles=WindowsFirewall.TurnOffFirewall
+
+[WindowsFirewall.TurnOffFirewall]
+ Mode=0
+
+[Branding]
+ BrandIEUsingUnattended=Yes
+
+[GuiRunOnce]
+ Command0="cmd /c A:\finish.exe 10.0.0.2"
+
+[Display]
+ Xresolution=1024
+ YResolution=768
+