Click here to Skip to main content
15,905,028 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to make my application trustable so that no antivirus block it.

I have googled and found this reference http://support.microsoft.com/kb/815147/EN-US

But i didn't find Microsoft .NET Framework Configuration which has been described in this tutorial.

Any help will be appreciable.
Posted

Project>>Add New Item then add a manifest file to your solution.

In the manifest file, change this line
C#
<requestedexecutionlevel level="asInvoker" uiaccess="false" />

To this:
C#
<requestedexecutionlevel level="requireAdministrator" uiaccess="false" />
 
Share this answer
 
Try here: .NET Framework Configuration Tool (Mscorcfg.msc)[^]. This page will show you some alternatives on how to start this tool.

In case you're curious how I found this bit of information: .NET Framework Configuration Tool (Mscorcfg.msc)[^].

Regards,
— Manfred
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900