なぜWindows 7で、次のVBSコードの作業を行いますが、Windows 10上でエラーを与える:VBS無効なクエリのWindowsで10
strComputer="."
Set objWMIService = GetObject("winmgmts:" & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colProcesses = objWMIService.ExecQuery("Select * from Win32_Process Where Name = 'notepad.exe'")
Wscript.Echo colProcesses.Count
私は、Windows 10で取得していますエラーは次のとおりです。
test_2.vbs(4,1)SWbemObjectSet:無効なクエリ
私はここで間違っていますか?
あなたのコードは私のシステムでうまく動作します(Windows 7を使用しています)。 – Gurman
はい、それは私の質問に記載されているようにWindows 7で動作しますが、Windows 10ではありません – user726720
ああ..私は気付きませんでした:P – Gurman