Making it happen
Delete folder from .BAT script
What is the difference between:
| Print article | This entry was posted by andrei on September 22, 2006 at 8:10 am, and is filed under Uncategorized. Follow any responses to this post through RSS 2.0. You can leave a response or trackback from your own site. |

about 5 years ago
Oops!
The proper way of chaining such potentially destructive commands is with a logic operator, like in bash: `cd C:\a\b && rm -rf *`
Don’t know if the old cmd shell supports such an idiom, but maybe PowerShell does?
about 5 years ago
No, cmd doesn’t accept that syntax
. As about Powershell, I usually don’t want 3rd party tools involved (and prefer stuff to work out of the box).