Code: Select all
SystemRoot=C:\WINDOWS
Code: Select all
"%SystemRoot%/system32/cmd.exe"
Code: Select all
"C:\WINDOWS/system32/cmd.exe"
Code: Select all
md .exe
command looks like %ComSpec% but with some forward slashes instead of backslashes.
Code: Select all
ComSpec=C:\WINDOWS\system32\cmd.exe
there is a /c parameter in the command,
so add a separator space before and after this parameter.
Now the command has changed to
Code: Select all
%ComSpec% /c md.exe
add a separator space after the md command
resulting in the observed
Code: Select all
%comspec% /c md .exe