I need to load and Unload registry hives from IIS worker process.Worker process is running under Domain Admin context.
In order to load and unload registry, SeBackupPrivilege and SeRestorePrivilege are required. Before loading the hives, I will make a call to AdjustTokenPrivileges to enable the required privilege. The call succeeds but with error 1300 Not all privileges or groups referenced are assigned to the caller.
But regsitry loading succeeds. I can see these privileges are available with the process using Process Explorer.
Now the issue is randomly after some time, one of the privilege is being removed from the process token and hence registry loading fails with error 1314.
Can any one please suggest why this might happen?
Thanks in Advance.
AdjustTokenPrivileges()call just before any attempt you make to load registry hives? – reuben Jul 5 '12 at 9:29