Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Vista Newsgroups > Vista hardware & devices

Vista - WD External hard drive trouble with read-only access

Reply
 
Old 07-19-2009   #1 (permalink)


Vista Home Premium 64 Bit
 
 

WD External hard drive trouble with read-only access

I just got a new HP desktop with 64bit Home Premium. My external, which I loaded from my Dell laptop (with Windows XP), now is all read-only. (The read only box is filled, rather than checked.) I cannot modify any files in he drive, but can access them all.

I have already tried the following proposed fixes with no success:
  • Right-click on drive; properties; tools tab; check now; unchecked both boxes and started and completed the check with no errors
  • Changed drive ownership to administrator
  • Changed drive ownership to my personal account
After each of these I tried to clear the read-only box, but the files still can't be modified, and the filled box is back when I re-open the properties on folders inside the drive.

Any help would be appreciated!

My System SpecsSystem Spec
Old 07-19-2009   #2 (permalink)
Badger


 
 

Re: WD External hard drive trouble with read-only access

drtre,

Click Start-All Programs- Accessories,

Right click CMD.EXE and select Run As Administrator,

Type CD\ to drop into the root directory.

Change to the external drive letter and type the following;

ATTRIB -S -H -R *.*/S and hit Enter.

Good Luck,
Badger


"drtre" <guest@xxxxxx-email.com> wrote in message
news:55bfcb91b9c9559e32a4f0ec4535f3a6@xxxxxx-gateway.com...
Quote:

>
> I just got a new HP desktop with 64bit Home Premium. My external, which
> I loaded from my Dell laptop (with Windows XP), now is all read-only.
> (The read only box is filled, rather than checked.) I cannot modify any
> files in he drive, but can access them all.
>
> I have already tried the following proposed fixes with no success:
>
>
> - Right-click on drive; properties; tools tab; check now; unchecked
> both boxes and started and completed the check with no errors
> - Changed drive ownership to administrator
> - Changed drive ownership to my personal account
>
> After each of these I tried to clear the read-only box, but the files
> still can't be modified, and the filled box is back when I re-open the
> properties on folders inside the drive.
>
> Any help would be appreciated!
>
>
> --
> drtre
My System SpecsSystem Spec
Old 07-19-2009   #3 (permalink)


Vista Home Premium 64 Bit
 
 

Re: WD External hard drive trouble with read-only access

Thanks a lot! It works just fine now...

Could you possibly explain what exactly those commands did? I am just curious as to what needed to be changed and how you came up with this particular solution
My System SpecsSystem Spec
Old 07-19-2009   #4 (permalink)
Pavel A.


 
 

Re: WD External hard drive trouble with read-only access

External is USB? Check that registry value
HKLM\System\CurrentControlSet\Control\StorageDevicePolicies\WriteProtect is
not set.

--pa



"drtre" <guest@xxxxxx-email.com> wrote in message
news:55bfcb91b9c9559e32a4f0ec4535f3a6@xxxxxx-gateway.com...
Quote:

>
> I just got a new HP desktop with 64bit Home Premium. My external, which
> I loaded from my Dell laptop (with Windows XP), now is all read-only.
> (The read only box is filled, rather than checked.) I cannot modify any
> files in he drive, but can access them all.
>
> I have already tried the following proposed fixes with no success:
>
>
> - Right-click on drive; properties; tools tab; check now; unchecked
> both boxes and started and completed the check with no errors
> - Changed drive ownership to administrator
> - Changed drive ownership to my personal account
>
> After each of these I tried to clear the read-only box, but the files
> still can't be modified, and the filled box is back when I re-open the
> properties on folders inside the drive.
>
> Any help would be appreciated!
>
>
> --
> drtre
My System SpecsSystem Spec
Old 07-19-2009   #5 (permalink)
R. C. White


 
 

Re: WD External hard drive trouble with read-only access

Hi, drtre.

You didn't bother to quote Badger's message - and the "forum" to which you
posted your messages simply relayed them to the Microsoft public news
server - with NO context - so I've pasted his instructions here, with my
comments inserted:
Quote:

> Click Start-All Programs- Accessories,
>
> Right click CMD.EXE and select Run As Administrator,
This opens an "elevated Command Prompt", officially known as an
Administrator:Command Prompt. See the Title Bar in the Command Prompt
window. You must furnish Administrator credentials to open this window.
Once here, any command or application you launch will run "elevated" - as
Administrator.

The Command Prompt window, elevated or not, is an emulation of MS-DOS, the
operating system that many of us used for years before the first Windows
arrived back in the 1950's. Even though the GUI (Graphical User Interface)
puts a pretty, friendly face on the operating system, under the hood, many
jobs can only be done by using the more-powerful "DOS" commands. Those of
us who grew up with these commands use them as second nature and don't
remember that they are a new idea to some users.
Quote:

> Type CD\ to drop into the root directory.
CD is for Change Directory and \ is the symbol for the Root, or top-level
directory for a drive; "directories" are now called "folders" but the
command is still CD, not CF. In the Command Prompt window, type CD /? to
see a "mini-Help" file listing all the parameters and switches that you can
use with that command. This /? trick works with just about any command;
read on...
Quote:

> Change to the external drive letter and type the following;
>
> ATTRIB -S -H -R *.*/S and hit Enter.
Again, type attrib /? to see a list of switches and parameters with this
command. Attrib is for Attribute. Each file or folder may have one or more
of several attributes: System, Hidden, Read-only, etc. This command can
turn those Attributes on or off. The wildcard *.* applies it to all files
in that directory, and the /s extends the command to all subdirectories
(subfolders). Badger's command will remove all those attributes from all
the files and folders in the directory where it is used.
Quote:

> Good Luck,
> Badger
If you have more questions, you might want to "cut out the middleman" and
post directly to the Microsoft public news server, which is free and does
not require you to log on. Just click here to start up your default
newsreader and connect to THIS newsgroup:
news://msnews.microsoft.com/microsof...rdware_devices

RC
--
R. C. White, CPA
San Marcos, TX
rc@xxxxxx
Microsoft Windows MVP
Windows Live Mail 2009 (14.0.8064.0206) in Win7 Ultimate x64 RC 7100

"drtre" <guest@xxxxxx-email.com> wrote in message
news:68eb5f4e226ee1f43133a9689c7be40f@xxxxxx-gateway.com...
Quote:

>
> Thanks a lot! It works just fine now...
>
> Could you possibly explain what exactly those commands did? I am just
> curious as to what needed to be changed and how you came up with this
> particular solution
>
>
> --
> drtre
My System SpecsSystem Spec
Old 07-20-2009   #6 (permalink)
R. C. White


 
 

Re: WD External hard drive trouble with read-only access

Oops!
Quote:

> The Command Prompt window, elevated or not, is an emulation of MS-DOS, the
> operating system that many of us used for years before the first Windows
> arrived back in the 1950's.
That's the 1980's, of course. Windows is not THAT old! :^}

RC
--
R. C. White, CPA
San Marcos, TX
rc@xxxxxx
Microsoft Windows MVP
Windows Live Mail 2009 (14.0.8064.0206) in Win7 Ultimate x64 RC 7100



"R. C. White" <rc@xxxxxx> wrote in message
news:#lr4izNCKHA.5068@xxxxxx
Quote:

> Hi, drtre.
>
> You didn't bother to quote Badger's message - and the "forum" to which you
> posted your messages simply relayed them to the Microsoft public news
> server - with NO context - so I've pasted his instructions here, with my
> comments inserted:
>
Quote:

>> Click Start-All Programs- Accessories,
>>
>> Right click CMD.EXE and select Run As Administrator,
>
> This opens an "elevated Command Prompt", officially known as an
> Administrator:Command Prompt. See the Title Bar in the Command Prompt
> window. You must furnish Administrator credentials to open this window.
> Once here, any command or application you launch will run "elevated" - as
> Administrator.
>
> The Command Prompt window, elevated or not, is an emulation of MS-DOS, the
> operating system that many of us used for years before the first Windows
> arrived back in the 1950's. Even though the GUI (Graphical User
> Interface) puts a pretty, friendly face on the operating system, under the
> hood, many jobs can only be done by using the more-powerful "DOS"
> commands. Those of us who grew up with these commands use them as second
> nature and don't remember that they are a new idea to some users.
>
Quote:

>> Type CD\ to drop into the root directory.
>
> CD is for Change Directory and \ is the symbol for the Root, or top-level
> directory for a drive; "directories" are now called "folders" but the
> command is still CD, not CF. In the Command Prompt window, type CD /? to
> see a "mini-Help" file listing all the parameters and switches that you
> can use with that command. This /? trick works with just about any
> command; read on...
>
Quote:

>> Change to the external drive letter and type the following;
>>
>> ATTRIB -S -H -R *.*/S and hit Enter.
>
> Again, type attrib /? to see a list of switches and parameters with this
> command. Attrib is for Attribute. Each file or folder may have one or
> more of several attributes: System, Hidden, Read-only, etc. This command
> can turn those Attributes on or off. The wildcard *.* applies it to all
> files in that directory, and the /s extends the command to all
> subdirectories (subfolders). Badger's command will remove all those
> attributes from all the files and folders in the directory where it is
> used.
>
Quote:

>> Good Luck,
>> Badger
>
> If you have more questions, you might want to "cut out the middleman" and
> post directly to the Microsoft public news server, which is free and does
> not require you to log on. Just click here to start up your default
> newsreader and connect to THIS newsgroup:
> news://msnews.microsoft.com/microsof...rdware_devices
>
> RC
>
> "drtre" <guest@xxxxxx-email.com> wrote in message
> news:68eb5f4e226ee1f43133a9689c7be40f@xxxxxx-gateway.com...
Quote:

>>
>> Thanks a lot! It works just fine now...
>>
>> Could you possibly explain what exactly those commands did? I am just
>> curious as to what needed to be changed and how you came up with this
>> particular solution
>>
>>
>> --
>> drtre
My System SpecsSystem Spec
Old 07-20-2009   #7 (permalink)
Badger


 
 

Re: WD External hard drive trouble with read-only access

:-)

"R. C. White" <rc@xxxxxx> wrote in message
news:#H1jsoVCKHA.1340@xxxxxx
Quote:

> Oops!
>
Quote:

>> The Command Prompt window, elevated or not, is an emulation of MS-DOS,
>> the operating system that many of us used for years before the first
>> Windows arrived back in the 1950's.
>
> That's the 1980's, of course. Windows is not THAT old! :^}
>
> RC
> --
> R. C. White, CPA
> San Marcos, TX
> rc@xxxxxx
> Microsoft Windows MVP
> Windows Live Mail 2009 (14.0.8064.0206) in Win7 Ultimate x64 RC 7100
>
>
>
> "R. C. White" <rc@xxxxxx> wrote in message
> news:#lr4izNCKHA.5068@xxxxxx
Quote:

>> Hi, drtre.
>>
>> You didn't bother to quote Badger's message - and the "forum" to which
>> you posted your messages simply relayed them to the Microsoft public news
>> server - with NO context - so I've pasted his instructions here, with my
>> comments inserted:
>>
Quote:

>>> Click Start-All Programs- Accessories,
>>>
>>> Right click CMD.EXE and select Run As Administrator,
>>
>> This opens an "elevated Command Prompt", officially known as an
>> Administrator:Command Prompt. See the Title Bar in the Command Prompt
>> window. You must furnish Administrator credentials to open this window.
>> Once here, any command or application you launch will run "elevated" - as
>> Administrator.
>>
>> The Command Prompt window, elevated or not, is an emulation of MS-DOS,
>> the operating system that many of us used for years before the first
>> Windows arrived back in the 1950's. Even though the GUI (Graphical User
>> Interface) puts a pretty, friendly face on the operating system, under
>> the hood, many jobs can only be done by using the more-powerful "DOS"
>> commands. Those of us who grew up with these commands use them as second
>> nature and don't remember that they are a new idea to some users.
>>
Quote:

>>> Type CD\ to drop into the root directory.
>>
>> CD is for Change Directory and \ is the symbol for the Root, or top-level
>> directory for a drive; "directories" are now called "folders" but the
>> command is still CD, not CF. In the Command Prompt window, type CD /? to
>> see a "mini-Help" file listing all the parameters and switches that you
>> can use with that command. This /? trick works with just about any
>> command; read on...
>>
Quote:

>>> Change to the external drive letter and type the following;
>>>
>>> ATTRIB -S -H -R *.*/S and hit Enter.
>>
>> Again, type attrib /? to see a list of switches and parameters with this
>> command. Attrib is for Attribute. Each file or folder may have one or
>> more of several attributes: System, Hidden, Read-only, etc. This
>> command can turn those Attributes on or off. The wildcard *.* applies it
>> to all files in that directory, and the /s extends the command to all
>> subdirectories (subfolders). Badger's command will remove all those
>> attributes from all the files and folders in the directory where it is
>> used.
>>
Quote:

>>> Good Luck,
>>> Badger
>>
>> If you have more questions, you might want to "cut out the middleman" and
>> post directly to the Microsoft public news server, which is free and does
>> not require you to log on. Just click here to start up your default
>> newsreader and connect to THIS newsgroup:
>> news://msnews.microsoft.com/microsof...rdware_devices
>>
>> RC
>>
>> "drtre" <guest@xxxxxx-email.com> wrote in message
>> news:68eb5f4e226ee1f43133a9689c7be40f@xxxxxx-gateway.com...
Quote:

>>>
>>> Thanks a lot! It works just fine now...
>>>
>>> Could you possibly explain what exactly those commands did? I am just
>>> curious as to what needed to be changed and how you came up with this
>>> particular solution
>>>
>>>
>>> --
>>> drtre
>
My System SpecsSystem Spec
Reply

Thread Tools


Similar Threads
Thread Forum
External Hard Drive Occasionally Read Only General Discussion
My external Hard Drive is coming up as read only General Discussion
Cannot access external hard drive Vista hardware & devices
trouble with backups to external hard drive Vista General
Can't change read only on external hard drive Vista file management


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46