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
Installing the AutoRun requires administrator privs as it tries to write to HKEY_LOCAL_MACHINE.
However a per user autorun key is available in HKEY_CURRENT_USER and this should be used by default (with an option to install for everyone on the system if desired).
C:\Users\jnord>"c:\Program Files (x86)\clink\0.4.4\clink.bat" autorun -i
You must have administator rights to access cmd.exe's autorun
C:\Users\jnord>ver
Microsoft Windows [Version 6.3.9600]
C:\Users\jnord>cmd /?
....
If /D was NOT specified on the command line, then when CMD.EXE starts, it
looks for the following REG_SZ/REG_EXPAND_SZ registry variables, and if
either or both are present, they are executed first.
HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\AutoRun
and/or
HKEY_CURRENT_USER\Software\Microsoft\Command Processor\AutoRun
...
The text was updated successfully, but these errors were encountered:
Yes that's a good point. Wouldn't help in the installers case as "Program Files" needs administrator rights and that's the default. I'll make the autorun command default to HKCU.
Installing the AutoRun requires administrator privs as it tries to write to
HKEY_LOCAL_MACHINE
.However a per user autorun key is available in
HKEY_CURRENT_USER
and this should be used by default (with an option to install for everyone on the system if desired).The text was updated successfully, but these errors were encountered: