A Windows XP help forum. PCbanter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » PCbanter forum » Microsoft Windows XP » General XP issues or comments
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

DEL and/or DIR commands



 
 
Thread Tools Display Modes
  #1  
Old December 12th 07, 01:03 PM posted to microsoft.public.windowsxp.general
F. Lawrence Kulchar
external usenet poster
 
Posts: 70
Default DEL and/or DIR commands

Do the DEL and/or the DIR commands work at

Start...Run...Open line or,

must you type CMD and open the command prompt?

Thanks,

FLKulchar
Ads
  #2  
Old December 12th 07, 01:28 PM posted to microsoft.public.windowsxp.general
Pegasus \(MVP\)
external usenet poster
 
Posts: 4,441
Default DEL and/or DIR commands


"F. Lawrence Kulchar" wrote in
message ...
Do the DEL and/or the DIR commands work at

Start...Run...Open line or,

must you type CMD and open the command prompt?

Thanks,

FLKulchar


These are internal commands. If you want to invoke them
from the Run box then you must type them like so:

cmd /c dir c:\windows & pause


  #3  
Old December 12th 07, 02:14 PM posted to microsoft.public.windowsxp.general
Tim Slattery
external usenet poster
 
Posts: 1,340
Default DEL and/or DIR commands

"Pegasus \(MVP\)" wrote:


"F. Lawrence Kulchar" wrote in
message ...
Do the DEL and/or the DIR commands work at

Start...Run...Open line or,

must you type CMD and open the command prompt?

Thanks,

FLKulchar


These are internal commands. If you want to invoke them
from the Run box then you must type them like so:

cmd /c dir c:\windows & pause


Without the "& pause" on the end in the Run box, you'll see a command
console box flash and disappear. Your command will have run, but you
won't see any output (or error messages) from it. The "& pause" will
cause things to stop until you hit a keyboard key.

--
Tim Slattery
MS MVP(Shell/User)

http://members.cox.net/slatteryt
  #4  
Old December 12th 07, 02:32 PM posted to microsoft.public.windowsxp.general
Pegasus \(MVP\)
external usenet poster
 
Posts: 4,441
Default DEL and/or DIR commands


"Tim Slattery" wrote in message
...
"Pegasus \(MVP\)" wrote:


"F. Lawrence Kulchar" wrote
in
message ...
Do the DEL and/or the DIR commands work at

Start...Run...Open line or,

must you type CMD and open the command prompt?

Thanks,

FLKulchar


These are internal commands. If you want to invoke them
from the Run box then you must type them like so:

cmd /c dir c:\windows & pause


Without the "& pause" on the end in the Run box, you'll see a command
console box flash and disappear. Your command will have run, but you
won't see any output (or error messages) from it. The "& pause" will
cause things to stop until you hit a keyboard key.

--
Tim Slattery


Thanks for the hint, Tim . . .


  #5  
Old December 12th 07, 02:45 PM posted to microsoft.public.windowsxp.general
FLKulchar
external usenet poster
 
Posts: 57
Default DEL and/or DIR commands

Thank you for your info..."& pause"

New question: How come if I type "Program Files" instead of "Windows", I do
NOT get the file directory of Program Files; instead, I get..."file not
found".

I tried other folders and all to no avail...for some reason, only the
"Windows" file listing dorks with the 'dir' command.

Can you kindly explain?

Thanks,

FLKulchar



"Tim Slattery" wrote in message
...
"Pegasus \(MVP\)" wrote:


"F. Lawrence Kulchar" wrote
in
message ...
Do the DEL and/or the DIR commands work at

Start...Run...Open line or,

must you type CMD and open the command prompt?

Thanks,

FLKulchar


These are internal commands. If you want to invoke them
from the Run box then you must type them like so:

cmd /c dir c:\windows & pause


Without the "& pause" on the end in the Run box, you'll see a command
console box flash and disappear. Your command will have run, but you
won't see any output (or error messages) from it. The "& pause" will
cause things to stop until you hit a keyboard key.

--
Tim Slattery
MS MVP(Shell/User)

http://members.cox.net/slatteryt



  #6  
Old December 12th 07, 02:52 PM posted to microsoft.public.windowsxp.general
Pegasus \(MVP\)
external usenet poster
 
Posts: 4,441
Default DEL and/or DIR commands

You must surround your folder names with double quotes
if they contain embedded spaces:
cmd /c dir "c:\Program Files" & pause


"FLKulchar" wrote in message
...
Thank you for your info..."& pause"

New question: How come if I type "Program Files" instead of "Windows", I
do NOT get the file directory of Program Files; instead, I get..."file not
found".

I tried other folders and all to no avail...for some reason, only the
"Windows" file listing dorks with the 'dir' command.

Can you kindly explain?

Thanks,

FLKulchar



"Tim Slattery" wrote in message
...
"Pegasus \(MVP\)" wrote:


"F. Lawrence Kulchar" wrote
in
message ...
Do the DEL and/or the DIR commands work at

Start...Run...Open line or,

must you type CMD and open the command prompt?

Thanks,

FLKulchar

These are internal commands. If you want to invoke them
from the Run box then you must type them like so:

cmd /c dir c:\windows & pause


Without the "& pause" on the end in the Run box, you'll see a command
console box flash and disappear. Your command will have run, but you
won't see any output (or error messages) from it. The "& pause" will
cause things to stop until you hit a keyboard key.

--
Tim Slattery
MS MVP(Shell/User)

http://members.cox.net/slatteryt





  #7  
Old December 12th 07, 09:24 PM posted to microsoft.public.windowsxp.general
FLKulchar
external usenet poster
 
Posts: 57
Default DEL and/or DIR commands

Thank you...again, your expertise is uncanny...Thank you!

FLKulchar
"Pegasus (MVP)" wrote in message
...
You must surround your folder names with double quotes
if they contain embedded spaces:
cmd /c dir "c:\Program Files" & pause


"FLKulchar" wrote in message
...
Thank you for your info..."& pause"

New question: How come if I type "Program Files" instead of "Windows", I
do NOT get the file directory of Program Files; instead, I get..."file
not found".

I tried other folders and all to no avail...for some reason, only the
"Windows" file listing dorks with the 'dir' command.

Can you kindly explain?

Thanks,

FLKulchar



"Tim Slattery" wrote in message
...
"Pegasus \(MVP\)" wrote:


"F. Lawrence Kulchar" wrote
in
message ...
Do the DEL and/or the DIR commands work at

Start...Run...Open line or,

must you type CMD and open the command prompt?

Thanks,

FLKulchar

These are internal commands. If you want to invoke them
from the Run box then you must type them like so:

cmd /c dir c:\windows & pause

Without the "& pause" on the end in the Run box, you'll see a command
console box flash and disappear. Your command will have run, but you
won't see any output (or error messages) from it. The "& pause" will
cause things to stop until you hit a keyboard key.

--
Tim Slattery
MS MVP(Shell/User)

http://members.cox.net/slatteryt







 




Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off






All times are GMT +1. The time now is 07:49 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 PCbanter.
The comments are property of their posters.