wie man lesen kann will ich ein script erstellen mit dem man mit irgendeiner variable zb. themes einfach ab und anschalten kann
jedoch hat das nicht funktioniert
ich hab jetzt so lang rumgemacht dass es jtzt etwas komisch aussieht
SCRIPT:
Option Explicit
Dim objWMIService, objItem, objService
Dim colListOfServices, strComputer, strService, intSleep, WshShell, Args, i, Params
strComputer = "."
intSleep = 15000
Set WshShell = WScript.CreateObject("WScript.Shell")
Set Args = WScript.Arguments
'On Error Resume Next
' NB strService is case sensitive.
mgsbox strService = " ' " & WScript.Arguments(0) & " ' "
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" _
& strComputer & "\root\cimv2")
Set colListOfServices = objWMIService.ExecQuery _
("Select * from Win32_Service Where Name ="_
& " ' " & WScript.Arguments(0) & " ' " & " ")
For Each objService in colListOfServices
objService.StartSe
rvice()
Next
WScript.Echo "Your "& strService & " service has Started"
WScript.Quit
' End of Example WMI script to Start / Stop services
thx im vorraus
wenns schnell geht noch viel mehr
jedoch hat das nicht funktioniert
ich hab jetzt so lang rumgemacht dass es jtzt etwas komisch aussieht
SCRIPT:
Option Explicit
Dim objWMIService, objItem, objService
Dim colListOfServices, strComputer, strService, intSleep, WshShell, Args, i, Params
strComputer = "."
intSleep = 15000
Set WshShell = WScript.CreateObject("WScript.Shell")
Set Args = WScript.Arguments
'On Error Resume Next
' NB strService is case sensitive.
mgsbox strService = " ' " & WScript.Arguments(0) & " ' "
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" _
& strComputer & "\root\cimv2")
Set colListOfServices = objWMIService.ExecQuery _
("Select * from Win32_Service Where Name ="_
& " ' " & WScript.Arguments(0) & " ' " & " ")
For Each objService in colListOfServices
objService.StartSe
rvice()
Next
WScript.Echo "Your "& strService & " service has Started"
WScript.Quit
' End of Example WMI script to Start / Stop services
thx im vorraus
wenns schnell geht noch viel mehr
Kommentar