-1
Hello. I have been developing a program in Vb.net, and in it, there is a "Launcher" that downloads 2 other programs and then executes them. The problem is that it gives the following "error" when trying to run:
The 2 other programs Launcher runs require administrator permission. However, Launcher already runs with this permission, and the code used to run these other 2 programs is done with Verb "runes" :
Dim Dir As String = "C:\Users\" & SystemInformation.UserName & "\AppData\LocalLow\Temp\abcde\"
Dim p As New System.Diagnostics.ProcessStartInfo(Dir & "Program.exe")
p.Verb = "runas"
System.Diagnostics.Process.Start(p)
However, in the same way, this warning continues to be displayed. Could you help me?
Thank you in advance.