problem with command prompt....

G

Guest

i'm try to delete a folder named sysfwb ........... it's location is C:\sysfwb

it won't let me delete it on my own so i shut down explorer.exe with the
taskmgr and go into command prompt.

but command prompt always comes up as C:\document and settings\owner> so
when i type in the delete command it says file not found and i think it's
because of this.

ur help is very much appreciated!

jgreen
 
R

Ron Bogart

In
Jgreen said:
i'm try to delete a folder named sysfwb ........... it's location is
C:\sysfwb

it won't let me delete it on my own so i shut down explorer.exe with
the taskmgr and go into command prompt.

but command prompt always comes up as C:\document and settings\owner>
so
when i type in the delete command it says file not found and i think
it's because of this.

ur help is very much appreciated!

jgreen

While in Command window:

CD\ {This will take you to root of C Drive}
RD /S SYSFWB {Removes the directory and contents}


--
Ron Bogart {} ô¿ô¬
Associate Expert
Expert Zone -
Lovin life on Mercer Island 8^)
"Life is what happens while we are making other plans."
In memory of a true friend, MVP Alex Nichol (1935-2005)
 
R

R. C. White

Hi, Jgreen.

As Ron Bogart said... Or a one-command shortcut: rd /s C:\sysfwb

In the Command Prompt window, the Dir command, without more, shows only
files and folders within the directory (folder) that has the focus. So,
when you are in C:\documents and settings\owner, you can't see the contents
of C:\. Unless you add a parameter to Dir to tell it to look somewhere
else: Dir C:\ (Or just Dir \ to see the Root of whichever volume you are
in at the moment.)

In the Command Prompt window, you can get a mini-Help file for any command
by typing that command followed by /?: Dir /? or Del /?, for example.

RC
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top