You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a script that runs a cmd shell like this: cmd.exe /e:off /c "<COMMAND>"
# works without clink:
D:\>cmd.exe /e:off /c "echo a"
a
D:\>clink autorun install
Current AutoRun values
[...]
Clink successfully installed to run when cmd.exe starts (for current user).
# No longer works after installing
D:\>cmd.exe /e:off /c "echo a"
""AMD64"=="x86"" kann syntaktisch an dieser Stelle nicht verarbeitet werden.
# Roughly translated: ""AMD64"=="x86"" can't be syntactically processed at this point.
# Still works without /e:off
D:\>cmd.exe /c "echo a"
a
$ clink --version
1.6.4.1dd7ec
The text was updated successfully, but these errors were encountered:
I have a script that runs a cmd shell like this:
cmd.exe /e:off /c "<COMMAND>"
The text was updated successfully, but these errors were encountered: