Yesterday I asked a question on a Java Runtime. I resolved it myself, but now I'm insterested to don't show UAC prompt when I start my program. This program is an exe and it has the Administrator manifest.
Code :
Runtime.getRuntime().exec("cmd /c \"C:\\Program Files (x86)\\CodFiscExtractor\\MySQLServer\\MySqlStart.exe\"");
With this I start my program, but, how I said before, it displays me the uac prompt.
What I should do?
cmd /c
here? – VGR