Jump to content

Recommended Posts

Posted

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.

Posted (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.

;-))

Stefan

Edit:

SCSI Disk:

HKLM\System\CurrentControlSet\Enum\SCSI\<yourDiskName>\<serial no>\Device

Parameters\Disk\UserWriteCacheSetting = 0x0

FibreChannel Disk:

HKLM\System\CurrentControlSet\Enum\VPATH\<yourDiskName>\<serial no>\Device

Parameters\Disk\UserWriteCacheSetting = 0x0

iSCSI Disk:

HKLM\System\CurrentControlSet\Enum\SCSI\<yourDiskName>\<serial no>\Device

Parameters\Disk\UserWriteCacheSetting = 0x0

Edited by 99ojo
Posted

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.

Posted

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.

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

  • 3 years later...
Posted

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 Gude
How 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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...