Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tycho-user] Windows Adminstration rights with Tycho?

Hi,

I'm not a windows user, so sorry if my question is a bit fuzzy. 

http://launch4j.sourceforge.net/ allows to create an exe for Windows which supports metadata which tells the Windows system that the application requires adminstration rights.

<?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" uiAccess="false"/>
            </requestedPrivileges>
        </security>
    </trustInfo>
</assembly>    

Is the same possible with Tycho based Eclipse applications?

Best regards, Lars

Back to the top