尝试将初始化代码替换为:
ProcessStartInfo info = new ProcessStartInfo(@"C:Program FilesInternet Exploreriexplore.exe");
Process.Start仅当在System32文件夹中找到文件时,才使用非完整文件路径。

尝试将初始化代码替换为:
ProcessStartInfo info = new ProcessStartInfo(@"C:Program FilesInternet Exploreriexplore.exe");
Process.Start仅当在System32文件夹中找到文件时,才使用非完整文件路径。