Error in Process.Start() ― The system cannot find the file specified
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I am using the following code to fire the iexplore process. This is done in a simple console app. public static void StartIExplorer() { var info = new ProcessStartInfo("iexplore"); info.UseShellExecute = false; info.RedirectStandardInput = true; info.RedirectStandardOutput = true; info.RedirectStandardError = true; string password = "password"; SecureString securePassword = new SecureString(); for (int i = 0; i < password.Length; i++) securePassword.AppendChar(Convert.ToChar(password[i])); info.UserName = "userName"; info.Password =