Francesco Posted May 12, 2005 Posted May 12, 2005 Eeeck!! What's this big edit box about? Something tells me that this is a text box for the post message ... Commander Data, please analize this antiquated device in order to find that out... Stellar Date 12345678910:Dear earthlings, i'm sure you got bored to lose a lot of time to configure all those fresh windows 2003 installations.That's why I, captain of the windows 2003 enterprise edition starship , negotiated with the microborgs for a simpler way to configure your fresh install automatically.All the scripts are made with AutoIT (you can find it easily using google)You can make executables from those scripts by saving them as .au3, right clicking the saved files and using the Compile script function (naturally you must install AutoIT in order to have that function appear)Here they are: This is to set audio acceleration to maximumAutoItSetOption("WinWaitDelay",1000)Run("c:\windows\system32\cmd.exe" & " /c c:\windows\system32\mmsys.cpl"); Change in the following line the "Proprietà - Suoni" string with the title of the sound properties dialogWinWaitActive("Proprietà - Suoni"); Change in the following line the "z" with the keyboard shortcut key for the "Advanced" button in the sound properties dialogSend("!z")Send("^{TAB}")Send("{END}")Send("{TAB}")Send("{END}")Send("{ENTER}")Send("{ENTER}")This is to set video acceleration to maximumAutoItSetOption("WinWaitDelay",1000)Run("c:\windows\system32\cmd.exe" & " /c c:\windows\system32\desk.cpl");Change this to display properties window nameWinWaitActive("Proprietà - Schermo")Send("^+{TAB}");Change the "v" with the keyboard shortcut key for the advanced button in the resolution tab of display propertiesSend("!v")Send("^{TAB}" & "^{TAB}" & "^{TAB}")Send("{END}")Send("{ENTER}")Send("{ENTER}")This is to APPLY A THEME (I use it for the royale theme (save the theme files in c:\windows\resources\themes before!)AutoItSetOption("WinTitleMatchMode", 1)RunWait("c:\windows\system32\net.exe start Themes")RunWait("Royale.exe")Run("c:\windows\system32\cmd.exe" & " /c c:\windows\resources\themes\Royale.theme");Change this with the display properties window titleWinWaitActive("Proprietà - Schermo")Send("{ENTER}")Here are also various interesting registry settings:Windows Registry Editor Version 5.00;Disables CtrlAltDel for logon[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system]"disablecad"=dword:00000001;Enables audio service[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\AudioSrv]"Start"=dword:00000002;Enables themes service[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Themes]"Start"=dword:00000002;Disables the request of the shutdown reason[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows NT\Reliability]"ShutdownReasonOn"=dword:00000000"ShutdownReasonUI"=dword:00000000;Restores image acquisition service[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\stisvc]"Start"=dword:00000003;Restores imapi (burning) service[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ImapiService]"Start"=dword:00000003I've also found a way to enable automatically directx acceleration but it's a bit messy, if somebody really needs it i'll post it.
hotpants Posted June 14, 2005 Posted June 14, 2005 how do i script the acceleration settings to full - i would this to be done when installing a new fresh copy automatically, thx
SlumSlaYer Posted June 18, 2005 Posted June 18, 2005 : Thanks a lotCan you post the way you enable automaticall DX acceleration please.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now