How to ignore the safety warning

Asked

Viewed 56 times

-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:

inserir a descrição da imagem aqui

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.

1 answer

3

This notice is from the Windows UAC, and when you think the application is insecure it gives that notice, and your executable is also uncertified, to resolve that notice, you can, Purchase a Certificate of Signature from Executables(called the Codesign Certificate), and sign your exe, will not remain but as unknown! or Disable your UAC(but will only solve this warning for you).

Browser other questions tagged

You are not signed in. Login or sign up in order to post.