deltree can be simulated using the following .cmd file:
- Create an empty file deltree.cmd in %windir%\system32 folder
- Add the following content to the file, and save the file.
@echo off
del /S /F /Q %1
rd /S /Q %1
My 2cent tips & tricks on computer technology & Application Virtualization ...
deltree can be simulated using the following .cmd file:
@echo off
del /S /F /Q %1
rd /S /Q %1
http://sourceforge.net/projects/appvrepo/