will reg mit vbscript hinzufügen

0

VBS-Code sind wie folgt:

Set oShell = CreateObject ("Wscript.Shell")
Dim strArgs
strArgs = "cmd /c REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RUN" /v "MyCustomWorkgroupUsername" /t REG_DWORD /d 0"
oShell.Run strArgs, 0, false

Fehlermeldung :

Line :3
Char:28 
Error: Expected end of statement 
Code:800A0401
Source: Microsoft VBScript compilation error
user3275899
quelle

Antworten:

1

Ich habe doppelt "statt einfach" verwendet und es funktioniert gut für mich.

Set oShell = CreateObject ("Wscript.Shell")
    Dim strArgs
    strArgs = "cmd /c REG ADD ""HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RUN"" /v ""MyCustomWorkgroupUsername"" /t REG_DWORD /d 0"
    oShell.Run strArgs, 0, false
user3275899
quelle