ac#コードでWMIを使用してVisualBasicスクリプトファイルを開始する必要があります。
このコードの何が問題なのかよくわかりませんか?結果は常に8(不明な障害)になります。ただし、たとえばnotepad.exeは失敗することなく開始できます。
//Get the object on which the method will be invoked
ManagementClass processClass = new ManagementClass("Win32_Process");
//Create an array containing all arguments for the method
object[] methodArgs = { "C:\\MyFolder\\Test.vbs arg1 arg2", null, null, 0 };
//Execute the method
object result = processClass.InvokeMethod("Create", methodArgs);