Hello, I am trying to see if I can change the execution context of my code to 'NT Authority\Network Service'. How can I do that? If I execute my code, it will run as myself, but I would like some part of my code to run as Network Service. This is for testing purpose, my unit test ideally run some part of the code as Network Service, as the app is intended to run as Network Service. I saw WindowsIdentity.Impersonate(), but I am not really sure how I can get the WindowsIdentity of Network Service. Thanks. --