vote up 3 vote down star

I have a console application that require to use some code that need administrator level. I have read that I need to add a Manifest file myprogram.exe.manifest that look like that :

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
  <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
    <security>
      <requestedPrivileges>
        <requestedExecutionLevel level="requireAdministrator">
      </requestedPrivileges>
    </security>
  </trustInfo>
</assembly>

But it still doesn't raise the UAC (in the console or in debugging in VS). How can I solve this issue?

Update

I am able to make it work if I run the solution in Administrator or when I run the /bin/*.exe in Administrator. I am still wondering if it's possible to have something that will pop when the application start instead of explicitly right click>Run as Administrator?

flag

Are you running the application as an Administrator? – Nick Berardi Oct 22 '08 at 19:24
I am running VS as a normal user so no. But when I right click the console application and run it as administrator it works. I would like to have the "UAC popup" when i hit RUN in visual studio instead of bugging. – Daok Oct 22 '08 at 19:27
By the way, it works WHEN i run VS in administrator mode. What I would like is the popup if I do not run in administrator to let me switch to administrator mode. – Daok Oct 22 '08 at 19:28
Did you embed the manifest into myprogram.exe using the manifest tool (mt.exe)? Or is the manifest just sitting there on disk, in the same directory? – bk1e Oct 23 '08 at 0:58
sitting on the disk – Daok Oct 24 '08 at 13:39

1 Answer

vote up 3 vote down check

You need to embed the UAC manifest as an embedded Win32 resource. See Adding a UAC Manifest to Managed Code.

In short, you use a Windows SDK command line tool to embed it into your executable.

You can automate this as a post-build step by placing the following line as a post build task in your VS project's properties:

mt.exe -manifest "$(ProjectDir)$(TargetName).exe.manifest" -updateresource:"$(TargetDir)$(TargetName).exe;#1"
link|flag
mt.exe is in the Windows SDK? I have visited your link but it's look to be C++. – Daok Nov 3 '08 at 16:29
It's part of the Windows SDK, yes. msdn.microsoft.com/en-us/library/… – Judah Himango Jul 30 at 20:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.