PC Review


Reply
Thread Tools Rate Thread

how to delete the foler "Take write access off your guest network account ..." from desktop

 
 
Mike
Guest
Posts: n/a
 
      18th Apr 2007
On my Windows XP desktop, there is a folder with name

"Take write access off your guest network account ...".


It's kind of annoying, so I would like to delete it.


But I can't.


When I want to delete it, Windows Explorer shows following error :

"Cannot delete file: Cannot read from the source file or disk."


When I double click it, Windows Explorer shows following error:

"C:\Documents and Settings\....\Take write access off your guest
network
account .... refers to a location that is unavailable. It could be on
a
hard drive on this computer, or on a network. ..."




Any suggestions?




Thanks.

 
Reply With Quote
 
 
 
 
Wesley Vogel
Guest
Posts: n/a
 
      18th Apr 2007
The trailing periods in the folder name may be the problem.

Cannot delete file Cannot read from the source file or disk

See...
Cause 6: The file name includes an invalid name in the Win32 name space
here...
You cannot delete a file or a folder on an NTFS file system volume
http://support.microsoft.com/kb/320081

Try this.

To delete a folder.

RD is the RemoveDirectory command. Removes (that is, deletes) a directory
or folder.

Dragging the folder into the command prompt automatically types the path &
folder name and adds the double quotes.

\\?\ turns off some checking of illegal names as a side effect of allowing
paths up to 32000 characters.

Open a command prompt...
Start | Run | Type: cmd | Click OK |
In the command prompt window type:

RD "\\?\

Drag the folder into the command prompt so you do not have to type the name
and path.

Click on the command prompt Title bar to give it focus.

Make sure that there are NOT three double quotes, only two, like...

C:\>RD "\\?\%userprofile%\Desktop\New Folder"

Then hit your Enter key.

Try this to delete the file.

Open a command prompt...
Start | Run | Type: cmd | Click OK |
In the command prompt window type:

del (and one space)

Drag the file into the command prompt.

Then hit your Enter key.

del is the delete command. Deletes specified files.

Dragging the file into the command prompt automatically types the path &
file name and adds the double quotes.

One space is needed between del and the path\file name, like...

del "%userprofile%\Desktop\New.txt"

\\?\ turns off some checking of illegal names as a side effect of allowing
paths up to 32000 characters.

Open a command prompt and type:

del "\\?\

Drag the file into the command prompt so you do not have to type the name
and path.

Click on the command prompt Title bar to give it focus.

Make sure that there are NOT three double quotes, only two, like...

C:\>del "\\?\%userprofile%\Desktop\New.txt"

Then hit your Enter key.

--
Hope this helps. Let us know.

Wes
MS-MVP Windows Shell/User

In news:(E-Mail Removed),
Mike <(E-Mail Removed)> hunted and pecked:
> On my Windows XP desktop, there is a folder with name
>
> "Take write access off your guest network account ...".
>
>
> It's kind of annoying, so I would like to delete it.
>
>
> But I can't.
>
>
> When I want to delete it, Windows Explorer shows following error :
>
> "Cannot delete file: Cannot read from the source file or disk."
>
>
> When I double click it, Windows Explorer shows following error:
>
> "C:\Documents and Settings\....\Take write access off your guest
> network
> account .... refers to a location that is unavailable. It could be on
> a
> hard drive on this computer, or on a network. ..."
>
>
>
>
> Any suggestions?
>
>
>
>
> Thanks.


 
Reply With Quote
 
Mike
Guest
Posts: n/a
 
      18th Apr 2007
On Apr 18, 10:49 am, "Wesley Vogel" <123WVogel...@comcast.net> wrote:
> The trailing periods in the folder name may be the problem.
>
> Cannot delete file Cannot read from the source file or disk
>
> See...
> Cause 6: The file name includes an invalid name in the Win32 name space
> here...
> You cannot delete a file or a folder on an NTFS file system volumehttp://support.microsoft.com/kb/320081
>
> Try this.
>
> To delete a folder.
>
> RD is the RemoveDirectory command. Removes (that is, deletes) a directory
> or folder.
>
> Dragging the folder into the command prompt automatically types the path &
> folder name and adds the double quotes.
>
> \\?\ turns off some checking of illegal names as a side effect of allowing
> paths up to 32000 characters.
>
> Open a command prompt...
> Start | Run | Type: cmd | Click OK |
> In the command prompt window type:
>
> RD "\\?\
>
> Drag the folder into the command prompt so you do not have to type the name
> and path.
>
> Click on the command prompt Title bar to give it focus.
>
> Make sure that there are NOT three double quotes, only two, like...
>
> C:\>RD "\\?\%userprofile%\Desktop\New Folder"
>
> Then hit your Enter key.
>
> Try this to delete the file.
>
> Open a command prompt...
> Start | Run | Type: cmd | Click OK |
> In the command prompt window type:
>
> del (and one space)
>
> Drag the file into the command prompt.
>
> Then hit your Enter key.
>
> del is the delete command. Deletes specified files.
>
> Dragging the file into the command prompt automatically types the path &
> file name and adds the double quotes.
>
> One space is needed between del and the path\file name, like...
>
> del "%userprofile%\Desktop\New.txt"
>
> \\?\ turns off some checking of illegal names as a side effect of allowing
> paths up to 32000 characters.
>
> Open a command prompt and type:
>
> del "\\?\
>
> Drag the file into the command prompt so you do not have to type the name
> and path.
>
> Click on the command prompt Title bar to give it focus.
>
> Make sure that there are NOT three double quotes, only two, like...
>
> C:\>del "\\?\%userprofile%\Desktop\New.txt"
>
> Then hit your Enter key.
>
> --
> Hope this helps. Let us know.
>
> Wes
> MS-MVP Windows Shell/User
>
> Innews:(E-Mail Removed),
> Mike <gongweig...@gmail.com> hunted and pecked:
>
>
>
> > On my Windows XP desktop, there is a folder with name

>
> > "Take write access off your guest network account ...".

>
> > It's kind of annoying, so I would like to delete it.

>
> > But I can't.

>
> > When I want to delete it, Windows Explorer shows following error :

>
> > "Cannot delete file: Cannot read from the source file or disk."

>
> > When I double click it, Windows Explorer shows following error:

>
> > "C:\Documents and Settings\....\Take write access off your guest
> > network
> > account .... refers to a location that is unavailable. It could be on
> > a
> > hard drive on this computer, or on a network. ..."

>
> > Any suggestions?

>
> > Thanks.- Hide quoted text -

>
> - Show quoted text -


Cool. The following command works:

> C:\>RD "\\?\%userprofile%\Desktop\New Folder"


Thanks.


 
Reply With Quote
 
Wesley Vogel
Guest
Posts: n/a
 
      18th Apr 2007
Glad it worked for you.

--
Hope this helps. Let us know.

Wes
MS-MVP Windows Shell/User

In news:(E-Mail Removed),
Mike <(E-Mail Removed)> hunted and pecked:
> On Apr 18, 10:49 am, "Wesley Vogel" <123WVogel...@comcast.net> wrote:
>> The trailing periods in the folder name may be the problem.
>>
>> Cannot delete file Cannot read from the source file or disk
>>
>> See...
>> Cause 6: The file name includes an invalid name in the Win32 name space
>> here...
>> You cannot delete a file or a folder on an NTFS file system
>> volumehttp://support.microsoft.com/kb/320081
>>
>> Try this.
>>
>> To delete a folder.
>>
>> RD is the RemoveDirectory command. Removes (that is, deletes) a
>> directory
>> or folder.
>>
>> Dragging the folder into the command prompt automatically types the path
>> &
>> folder name and adds the double quotes.
>>
>> \\?\ turns off some checking of illegal names as a side effect of
>> allowing
>> paths up to 32000 characters.
>>
>> Open a command prompt...
>> Start | Run | Type: cmd | Click OK |
>> In the command prompt window type:
>>
>> RD "\\?\
>>
>> Drag the folder into the command prompt so you do not have to type the
>> name
>> and path.
>>
>> Click on the command prompt Title bar to give it focus.
>>
>> Make sure that there are NOT three double quotes, only two, like...
>>
>> C:\>RD "\\?\%userprofile%\Desktop\New Folder"
>>
>> Then hit your Enter key.
>>
>> Try this to delete the file.
>>
>> Open a command prompt...
>> Start | Run | Type: cmd | Click OK |
>> In the command prompt window type:
>>
>> del (and one space)
>>
>> Drag the file into the command prompt.
>>
>> Then hit your Enter key.
>>
>> del is the delete command. Deletes specified files.
>>
>> Dragging the file into the command prompt automatically types the path &
>> file name and adds the double quotes.
>>
>> One space is needed between del and the path\file name, like...
>>
>> del "%userprofile%\Desktop\New.txt"
>>
>> \\?\ turns off some checking of illegal names as a side effect of
>> allowing
>> paths up to 32000 characters.
>>
>> Open a command prompt and type:
>>
>> del "\\?\
>>
>> Drag the file into the command prompt so you do not have to type the name
>> and path.
>>
>> Click on the command prompt Title bar to give it focus.
>>
>> Make sure that there are NOT three double quotes, only two, like...
>>
>> C:\>del "\\?\%userprofile%\Desktop\New.txt"
>>
>> Then hit your Enter key.
>>
>> --
>> Hope this helps. Let us know.
>>
>> Wes
>> MS-MVP Windows Shell/User
>>
>> Innews:(E-Mail Removed),
>> Mike <gongweig...@gmail.com> hunted and pecked:
>>
>>
>>
>>> On my Windows XP desktop, there is a folder with name

>>
>>> "Take write access off your guest network account ...".

>>
>>> It's kind of annoying, so I would like to delete it.

>>
>>> But I can't.

>>
>>> When I want to delete it, Windows Explorer shows following error :

>>
>>> "Cannot delete file: Cannot read from the source file or disk."

>>
>>> When I double click it, Windows Explorer shows following error:

>>
>>> "C:\Documents and Settings\....\Take write access off your guest
>>> network
>>> account .... refers to a location that is unavailable. It could be on
>>> a
>>> hard drive on this computer, or on a network. ..."

>>
>>> Any suggestions?

>>
>>> Thanks.- Hide quoted text -

>>
>> - Show quoted text -

>
> Cool. The following command works:
>
>> C:\>RD "\\?\%userprofile%\Desktop\New Folder"

>
> Thanks.


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: Can "computer administrator" be only one to modify destop of "guest account"? pjp Windows XP Help 1 26th Aug 2010 08:36 PM
screen black-out after "logout" from "Guest" account Surfer Windows XP Basics 0 9th Jul 2007 03:58 AM
how to let "Guest" account access internet M Youssif Windows XP General 0 31st Mar 2006 02:54 PM
"Limited Account" doesn't have read or write access Ian Windows XP Accessibility 1 10th Jan 2004 02:56 AM
Allowing "guest user" to access my internet account junkyardnqq88 Windows XP Accessibility 1 22nd Sep 2003 07:17 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 10:35 PM.