To automate your systemsetup you have to handle:
@echo off
echo Start this as Admin!
pause
rem http://unattended.sourceforge.net/installers.php
rem wlandriver
.\Drivers\WLAN_ATHEROS_V8.0.0.258_WIN7_CA41534-6772\setup.exe /s /a /sms
rem http://mantraaz.wordpress.com/2010/10/18/script-to-add-wireless-profile/
rem export wlanprofile:
rem netsh wlan export profile name=3WebCube3BA2
rem import:
netsh wlan add profile filename=.\other\Drahtlosnetzwerkverbindung-3WebCube3BA2.xml
rem lan
md Logod_Intel_82577LM_LC_v115100_Win7x64_lanset2
xcopy /e Drivers\Logod_Intel_82577LM_LC_v115100_Win7x64_lanset2 %systemroot%\inf\Logod_Intel_82577LM_LC_v115100_Win7x64_lanset2
rem tablettasten
.\Drivers\FTS_FujitsuTabletPCButtonDriver_4208272009_1047114\BtnDrv_64\DPInst.exe /sw
rem system
md %systemroot%\inf\FUJ02B1-V1.23-64bit-Windows7Logo
xcopy /e .\Drivers\FUJ02B1-V1.23-64bit-Windows7Logo %systemroot%\inf\FUJ02B1-V1.23-64bit-Windows7Logo
rem umts
.\Drivers\FTS_SierraWirelessGobi2000HSUSBMobileBroadband_11180_1053221\72-VR322-15_1.1.180\Setup.exe /s /a /sms
rem pen
.\Drivers\FTS_WACOMDualPadTouch_51111c_1043540\PenTablet_DualTouch_511-11c\setup.exe /s /a /sms
rem sdslot
.\Drivers\FTS_O2MicroFlashMemoryCard_3000006_1039191\O2Micro_Memory_Card_Driver_7VistaXP_V3.00.0006\setup.exe /s /a /sms
rem webcam
.\Drivers\FTS_FJCamera_58520080_1040648\Sonixcam_5.8.52008.0\CNF8248VideoClassNBUSB20PCCam_v5.8.52008.0_WHQL.exe /s /a /sms
rem scroll with touchpad
regedit /S ".\other\FTS_Enableverticalscroll_100_1048491\Vertical Scroll Area\Fujitsu_Driver_registry.reg"
rem win7 sp1 64bit
msiexec /qb /i .\programsetups\Windows_Win7SP1.7601.17514.101119-1850.AMD64FRE.Symbols.msi REBOOT=ReallySuppress
rem http://mantraaz.wordpress.com/2010/10/18/script-to-add-wireless-profile/
rem export wlanprofile:
rem netsh wlan export profile name=profile1
rem import:
netsh wlan add profile filename=.\other\Drahtlosnetzwerkverbindung-profiel1.xml
rem install software with ninite:
rem got from here: http://ninite.com/7zip-dropbox-eclipse-essentials-firefox-flash-flashie-jdk-libreoffice-notepadplusplus-paint.net-pidgin-putty-reader-silverlight-skype-thunderbird-truecrypt-vlc-winmerge-winscp/
".\programsetups\Ninite 7Zip Dropbox Eclipse Essentials Firefox Installer.exe"
- Automation of installation of applications
- Automation of installation of drivers
- Automation of basic configurtaiontasks
- Use of commanlineparamters of setuppackages (unattended.sourceforge.net did a great job)
- "xcopy /e" drivers which are not aviable through windows update to %systemroot%\inf to install drivers silently
- basic configuration
- use netsh to import your wlanprofile (great job from http://mantraaz.wordpress.com/2010/10/18/script-to-add-wireless-profile/)
- use regedit /s
to import yor regentries silently - use ninet.com to get most applications completly automated
- put everything on a pendrive and the commands in a batchfile
@echo off
echo Start this as Admin!
pause
rem http://unattended.sourceforge.net/installers.php
rem wlandriver
.\Drivers\WLAN_ATHEROS_V8.0.0.258_WIN7_CA41534-6772\setup.exe /s /a /sms
rem http://mantraaz.wordpress.com/2010/10/18/script-to-add-wireless-profile/
rem export wlanprofile:
rem netsh wlan export profile name=3WebCube3BA2
rem import:
netsh wlan add profile filename=.\other\Drahtlosnetzwerkverbindung-3WebCube3BA2.xml
rem lan
md Logod_Intel_82577LM_LC_v115100_Win7x64_lanset2
xcopy /e Drivers\Logod_Intel_82577LM_LC_v115100_Win7x64_lanset2 %systemroot%\inf\Logod_Intel_82577LM_LC_v115100_Win7x64_lanset2
rem tablettasten
.\Drivers\FTS_FujitsuTabletPCButtonDriver_4208272009_1047114\BtnDrv_64\DPInst.exe /sw
rem system
md %systemroot%\inf\FUJ02B1-V1.23-64bit-Windows7Logo
xcopy /e .\Drivers\FUJ02B1-V1.23-64bit-Windows7Logo %systemroot%\inf\FUJ02B1-V1.23-64bit-Windows7Logo
rem umts
.\Drivers\FTS_SierraWirelessGobi2000HSUSBMobileBroadband_11180_1053221\72-VR322-15_1.1.180\Setup.exe /s /a /sms
rem pen
.\Drivers\FTS_WACOMDualPadTouch_51111c_1043540\PenTablet_DualTouch_511-11c\setup.exe /s /a /sms
rem sdslot
.\Drivers\FTS_O2MicroFlashMemoryCard_3000006_1039191\O2Micro_Memory_Card_Driver_7VistaXP_V3.00.0006\setup.exe /s /a /sms
rem webcam
.\Drivers\FTS_FJCamera_58520080_1040648\Sonixcam_5.8.52008.0\CNF8248VideoClassNBUSB20PCCam_v5.8.52008.0_WHQL.exe /s /a /sms
rem scroll with touchpad
regedit /S ".\other\FTS_Enableverticalscroll_100_1048491\Vertical Scroll Area\Fujitsu_Driver_registry.reg"
rem win7 sp1 64bit
msiexec /qb /i .\programsetups\Windows_Win7SP1.7601.17514.101119-1850.AMD64FRE.Symbols.msi REBOOT=ReallySuppress
rem http://mantraaz.wordpress.com/2010/10/18/script-to-add-wireless-profile/
rem export wlanprofile:
rem netsh wlan export profile name=profile1
rem import:
netsh wlan add profile filename=.\other\Drahtlosnetzwerkverbindung-profiel1.xml
rem install software with ninite:
rem got from here: http://ninite.com/7zip-dropbox-eclipse-essentials-firefox-flash-flashie-jdk-libreoffice-notepadplusplus-paint.net-pidgin-putty-reader-silverlight-skype-thunderbird-truecrypt-vlc-winmerge-winscp/
".\programsetups\Ninite 7Zip Dropbox Eclipse Essentials Firefox Installer.exe"
Kommentare