Im using the Run/Shell command to call an NT command script
(which uses DOS commands, such as MD) from a
Kixtart script, but it does not work!

The NT command file (test.cmd)is as follows
RD /s /q "%SystemDrive%\Temp\Test\"
MD "%SystemDrive%\Temp\Test\"

At login, i want to empty the contents of the Test directory (which may also have sub directories, which i want deleted!), so everything is deleted, and then re-create it. But Kixtart does not allows this, so i have to do it through DOS, and thus saved it as 'CMD' and called it from a Kixtart script!

Then in the Kix script:

Run "test.cmd"

Does anyone have any other examples?