Hi,
How do I compose and run a command that contains windows variables like %PATH% and others as listed here: ?
Something like this...
Thanks,
Stanley
How do I compose and run a command that contains windows variables like %PATH% and others as listed here: ?
Something like this...
Code:
lcDrive = 'E:'
Store "%PATH%\sdelete.exe -p2 -s -q -z " + (lcDrive) To eCmd
oWsh = Createobject("wscript.shell")
oWsh.Run(eCmd, 0, .F.)
Release oWsh
Thanks,
Stanley