子衿沉夜
比如要把C盘windows目录中的notepad.exe这个程序添加到系统启动项可以这样写:system("reg add hklm\\software\\microsoft\\windows\\currentversion\\run /v test /d c:\\windows\\notepad.exe /f");其中:hklm\\software\\microsoft\\windows\\currentversion\\run表示的是注册表中的路径:HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run。那么c:\\windows\\notepad.exe 就应该知道是什么了吧。