Monday, September 06, 2010
   
Text Size

Search

hits.

purpleender

Rep

Gamerscore33992

ZoneUnderground

Technical Log

XP - Disable Welcome Screen

 WshShell.RegWrite "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\Explorer\NoWelcomeScreen", 1 , "REG_DWORD"
 

XP - Disable APIPA

 WshShell.RegWrite "HKLM\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\IPAutoconfigurationEnabled", 0 , "REG_DWORD"
 

XP - Set program to run at next login

 WshShell.RegWrite "HKLM\Software\Microsoft\Windows\CurrentVersion\Runonce\JoinDomain", "c:\startup\JoinDom.vbs", "REG_SZ"
   

VB - IE Progress Bar

 ' ***** Create IE Object to give a status message on screen
 set IE = createobject("InternetExplorer.application")
 ' ***** Set the window height and width (in pixels)
 ie.width=450
 ie.height=350
 ' ***** Position of window on screen (pixels from the edges of the screen)
 ie.top=10
 ie.left=10
 ' ***** Set what menus etc appear on the window (these are switched off)
 ie.menubar=0
 ie.statusbar=0
 ie.resizable=0
 ie.toolbar=0
 ' ***** Put this in to prevent IE looking for a website
 ie.navigate ("about:blank")
 ' ***** Set what appears in the window title bar
 ie.document.title="Windows XP Setup......."
 ' ***** This is what will appear in the main body
 strtext="
"

 ie.document.body.innerhtml=strtext
 ' ***** Makes the window visible
 ie.visible=1

 

 strtext="
"
 StrText = StrText + ("
")
 ie.document.body.innerhtml=strtext

 

XP - Unattend.txt

;SetupMgrTag
[Data]
    AutoPartition=1
    MsDosInitiated="0"
    UnattendedInstall="Yes"

[Unattended]
    UnattendMode=FullUnattended
    fileSystem = ConvertNTFS
    OemSkipEula=Yes
    OemPreinstall=Yes
    TargetPath=\WINNT
OemPNPDriversPath="PNP\D600\cardbus;PNP\D600\bluetooth;PNP\D600\audio;\PNP\D600\chipset;PNP\D600\modem;PNP\D600\NIC;PNP\D600\video;PNP\D800\audio;PNP\D800\bluetooth;PNP\D800\cardbus;PNP\D800\chipset;PNP\D800\nic;PNP\D800\video;PNP\gx260\audio;PNP\gx260\chipset;PNP\gx260\nic;PNP\gx260\video;PNP\gx270\audio;PNP\gx270\chipset;PNP\gx270\NIC;PNP\gx270\video;PNP\GX240"
    UnattendSwitch=Yes

[GuiUnattended]
    AdminPassword="repa1r"
    EncryptedAdminPassword=NO
    AutoLogon=Yes
    AutoLogonCount=4
    OEMSkipRegional=1
    TimeZone=85
    OemSkipWelcome=1

[UserData]
    ProductKey=*
    FullName="AH"
    OrgName="Andrew-Henderson"

[Display]
XResolution = 1024
YResolution = 768
VRefresh = 75

[RegionalSettings]
 LanguageGroup=1
 SystemLocale=00000809
 UserLocale=00000809
 InputLocale=0809:00000809

[Components]
 msmsgs=off
 msnexplr=off
 ZoneGames=Off

[Identification]
    JoinWorkgroup=AHBuild

[Networking]
    InstallDefaultComponents=Yes

[GuiRunOnce]
    Command0="c:\winnt\system32\wscript.exe c:\startup\XPSETUP1.vbs"
    Command1="c:\winnt\system32\shutdown.exe -r -t 0"

   

Page 7 of 12