I am trying to run this line of code to disable a device (found in Device Manager) in a Windows 8 Store App (C#):
bool result = Native.SetupDiCallClassInstaller(Native.DIF_PROPERTYCHANGE, hDevInfo, ptrToDevInfoData);
The result returns "false" meaning it could not disable the device. I know this line of code might need Administrator privileges to run, so I made a manifest file with this line:
<requestedExecutionLevel level="requireAdministrator" uiAccess="false" />
I added this Post-build event command line:
"C:\Program Files (x86)\Windows Kits\8.0\bin\x64\mt.exe" -manifest "$(ProjectDir)$(TargetName).exe.manifest" -updateresource:"$(TargetDir)$(TargetName).exe;#1"
Any ideas? Thanks.