↧
Answer by user541686 for How do you call an exe from code and get around...
UAC Elevation in Managed Code: Starting Elevated Processes
View ArticleAnswer by Isaac Bolinger for How do you call an exe from code and get around...
ProcessStartInfo startInfo = new ProcessStartInfo();startInfo.Arguments = "/i "+"\""+Directory.GetCurrentDirectory()+"\\"+msiPath +"\""+" /q";startInfo.FileName = "msiexec.exe";startInfo.Verb =...
View ArticleAnswer by programmer for How do you call an exe from code and get around...
Try running your process with the admin privileges and see if the problem persists
View ArticleHow do you call an exe from code and get around possible UAC action against...
I'm using system.diagnostics.process to start an msi file in quiet mode. I'm getting an exit code 1625, and I suspect its because UAC is preventing it from running. I've turned off the UAC prompts but...
View Article