我正在使用C#中的visual studio 2013编写程序,我需要启动Intel Graphics程序。我在C:\Windows\System32
找到了该程序,并将其命名为gfxui.exe
。我已经尝试了各种各样的东西,但它一直说它找不到文件。这是我当前调用该程序的代码:
using System.Diagnostics;
Process v;
v = Process.Start(@"C:\Windows\System32\gfxui.exe");
未处理的类型' System.ComponentModel.Win32Exception'发生在System.dll
中附加信息:系统找不到指定的文件
以上是运行代码时出现的错误。这是经过测试以管理员身份运行Visual Studio。 任何帮助是极大的赞赏。
C:\Users\Craig>dir C:\Windows\System32\gfxui.exe
Volume in drive C has no label.
Volume Serial Number is 1084-E8E0
Directory of C:\Windows\System32
01/30/2014 12:02 AM 5,904,856 GfxUI.exe
1 File(s) 5,904,856 bytes
0 Dir(s) 28,730,310,656 bytes free
C:\Users\Craig>start gfxui.exe
我在cmd中运行了这两个命令。第二个打开了我的程序。