Hi,
In my application I have created a job object and subsequent child process are the part of this job .
In order to add processes to job object I was required to add a manifest file (security attribute) on vista other wise Explorer adds process to its own job and doesnt allow application to add child process in to the application's job object.
This application seems to be working fine when manifest file is added on Vista i.e. all the subsequent processes created are the part of the applcaitin job object,but on Windows 7 this is not working.Here is the manifest file.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<dependency>
<dependentAssembly>
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="x86" publicKeyToken="6595b64144ccf1df" language="*"></assemblyIdentity>
</dependentAssembly>
</dependency>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel
level="asInvoker"
uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
Am I missing something in this manifest file for window 7 ?
Thanks in advance..