出于某种原因,我需要在Windows启动时运行CMD。 我需要用参数运行CMD。 有没有可能通过registry键来完成?
我正在尝试
"parameter"="\"C:\\Windows\\System32\\cmd.exe\"" [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce\parameter]
但是,如果可能的话,我怎样才能增加争论呢?
我做了这个简单的任务“C:\ Windows \ System32 \ cmd.exe / c notepad.exe”但是没有记事本由cmd运行。 什么可以共振?
我可以错过什么吗? 我1 in HKLM / RUN/ "C:\Windows\System32\cmd.exe /c notepad.exe" 2 in HKEY_CURRENT_USER/ RUN the same record "C:\Windows\System32\cmd.exe /c notepad.exe"
但cmd不启动记事本
您的示例具有*.reg
文件的错误顺序的行。 以下应该工作:
Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnce] "Terminal"="C:\\Windows\\system32\\cmd.exe /c parameter1 parameter2 parameter3 ..."
这只会在启动时运行一次。 如果您想在每次登录时运行,则需要将其更改为:
Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run] "Terminal"="C:\\Windows\\system32\\cmd.exe /c parameter1 parameter2 parameter3 ..."
从CMD你可以运行这个
REG ADD HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ RunOnce / t REG_SZ / d“”
或手动你可以去这个结构和字符串的值