I use NSudo in a AutoItscript I noticed that I run NSudo like this:
"Resources\helper\NSudo.exe -U:T" & @TAB & "%windir%\notepad.exe"
I'll crash.
When I replace the '@TAB' with a space - it works:
"Resources\helper\NSudo.exe -U:T" & " " & "%windir%\notepad.exe"
However @TAB and Space should be in the same class of whitespace and both work.
I guess the commandlineparser needs some fixing here.
The issue is opened too long. I don't know the issue whether I solved or not. So I closed this issue. Please fire a new issue if you still met the issue.
I use NSudo in a AutoItscript I noticed that I run NSudo like this:
"Resources\helper\NSudo.exe -U:T" & @TAB & "%windir%\notepad.exe"
I'll crash. When I replace the '@TAB' with a space - it works:"Resources\helper\NSudo.exe -U:T" & " " & "%windir%\notepad.exe"
However @TAB and Space should be in the same class of whitespace and both work. I guess the commandlineparser needs some fixing here.