使用script.exe运行vb脚本

本文关键字:vb 脚本 运行 exe script 使用 | 更新日期: 2023-09-27 18:20:24

我想使用cscript.exe运行vbscript文件。我搜索了很多,但没有找到任何方法,而我可以使用cmd和cscript.exe 运行我的脚本

这是我的代码

Process p = new Process();
            p.StartInfo.Arguments = @"C:''Program Files''VDIWorkLoad''WorkLoadFile''open test.vbs";
            p.StartInfo.FileName = "testing";
            p.StartInfo.UseShellExecute = false;
            try
            {
                p.Start();
                p.WaitForExit();
                Console.WriteLine("Done.");
            }

知道我如何使用cscript.exe 吗

使用script.exe运行vb脚本

p>您应该将FileName属性设置为要运行的可执行文件。在您的情况下,这将是cscript.exe而不是testing:
p.StartInfo.Arguments = @"""C:'Program Files'VDIWorkLoad'WorkLoadFile'open test.vbs""";
p.StartInfo.FileName = @"C:'Windows'System32'cscript.exe";