vickerps Posted July 9, 2009 Posted July 9, 2009 Does anyone know of a way to script the disabling of write cache on all hard drives in Windows XP. I tried googling it and the only hit i have found is how to do it on a linux system.
99ojo Posted July 9, 2009 Posted July 9, 2009 (edited) Does anyone know of a way to script the disabling of write cache on all hard drives in Windows XP. I tried googling it and the only hit i have found is how to do it on a linux system.Hi,You have to change the following RegKey:HKLM\System\CurrentControlSet\Enum\IDE\<yourDiskName>\<serial no>\Device Parameters\Disk\UserWriteCacheSetting = 0x0 0x0 = disable and 0x00000001 = enabled. It is a REG_DWORD.;-))StefanEdit:SCSI Disk:HKLM\System\CurrentControlSet\Enum\SCSI\<yourDiskName>\<serial no>\Device Parameters\Disk\UserWriteCacheSetting = 0x0FibreChannel Disk:HKLM\System\CurrentControlSet\Enum\VPATH\<yourDiskName>\<serial no>\Device Parameters\Disk\UserWriteCacheSetting = 0x0iSCSI Disk:HKLM\System\CurrentControlSet\Enum\SCSI\<yourDiskName>\<serial no>\Device Parameters\Disk\UserWriteCacheSetting = 0x0 Edited July 9, 2009 by 99ojo
vickerps Posted July 9, 2009 Author Posted July 9, 2009 Thanks for the reply 99ojo sorry should of said that i knew about the reg thing however it only work if you know what <yourDiskName>\<serial no> is going to be as i have to do this on 100 of PCs the hard make could be different. is there anyway autoit could seek out what <yourDiskName>\<serial no> are present? or does anyone know of another way? Thanks for all you help so far much Appreciate.
99ojo Posted July 10, 2009 Posted July 10, 2009 Thanks for the reply 99ojosorry should of said that i knew about the reg thing however it only work if you know what <yourDiskName>\<serial no> is going to be as i have to do this on 100 of PCs the hard make could be different.is there anyway autoit could seek out what <yourDiskName>\<serial no> are present?or does anyone know of another way?Thanks for all you help so far much Appreciate.Hi,<YourDiskName> has always Disk in the Reg Main Key. The serials are all beneath this key.Have a look at function RegEnumVal.So you read all RegKeys above HKLM\System\CurrentControlSet\Enum\IDE.Use function StringInStr and look, if Disk is a part of the reg key.If yes use RegEnumVal again to read out serialnumbers of Disk and set the wanted RegKey;-))Stefan
rainmakers99 Posted November 8, 2012 Posted November 8, 2012 I know it is a bit late but you could get the dskcache tool from microsoft and run it with the right switcheshttp://support.microsoft.com/kb/Q811392
BrewManNH Posted November 8, 2012 Posted November 8, 2012 A bit late? It's been 3+ years since this was last commented on. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator
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