Hello. I have been developing a program in vb.net, and in the same, 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 execute:
The2otherprogramsthatthelauncherrunsrequireadministratorpermission.However,thelauncheralreadyrunswiththispermission,andthecodeusedtoruntheseother2programsisdonewithverb"runas":
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 is still displayed. Could you help me?
Thank you in advance.