我尝试在一个名为“addcurrentkey.vbs”的文件中执行此操作,但它说“)”应该在第 1 行。字符 38。
我试过这个教程: http: //www.codeproject.com/Articles/16569/Autorun-Applications
为什么我不能执行 .vbs 文件?
Private Sub AddCurrentKey(ByVal name As String, ByVal path As String)
Dim key As RegistryKey = Registry.CurrentUser.OpenSubKey("Software\Microsoft\Windows\CurrentVersion\Run", True)
key.SetValue(name, path)
End Sub