Click here to Skip to main content
15,886,075 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I'm working on a project where I take code from a text file, convert it to the type VBCodeProvider, and then compile an assembly based on that code.

Everything's working fine but I need to have the assembly run with administrator privileges. If I were writing an app in Visual Studio I could indicate administrator privileges through a few lines of code in the app.manifest. I don't know where to indicate this for the assembly I'm compiling in my program though. Can you help me?

If it helps, I'm using a variation on the compiler code demonstrated in this project:
Project Link


Thank you,
Stephan
Posted

1 solution

You cannot legitimately modify any assembly after it was built. Why? And if an assembly was signed (highly recommended) and then modified, it is guaranteed from loading. This is an important safety feature.

By the way, there are some tools modifying assembly for various good reasons. To best of my knowledge, they all disassemble the code, and then re-build it.

—SA
 
Share this answer
 
v3

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