I'm writing a program in C # that needs administrator rights. To do this, I added the following lines to the "app.manifest" file:
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
</requestedPrivileges>
The request is working properly The program has administrator rights.
My problem is that on demand, the publisher is unknown and I do not know how to change it. UAC image
I entered my name in the assembly, but it does not change anything.
Does anyone know how to change this value?