Ignoring the security warning

-1

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.

    
asked by anonymous 16.11.2018 / 17:59

1 answer

3

This warning is from Windows UAC, and when you think the application is unsafe it gives you this warning, and your executable is also uncertified, to resolve this warning, you can, Buy a Certificate of Execution Signature CodeSign Certificate), and sign your exe, will not remain but as unknown! or Disable your UAC (but it will only resolve this warning for you).

    
16.11.2018 / 18:11