I'm running some selenium c# chrome driver test with the latest version of chrome driver and chrome.
On my desktop Windows 10 PC it works fine, however, in production Windows server 2016 I'm getting this error when selenium tries to start a new process.
[0703/113439.645:ERROR:process_reader_win.cc(123)] NtOpenThread: {Access Denied} A process has requested access to an object, but has not been granted those access rights. (0xc0000022)
[0703/113439.647:ERROR:exception_snapshot_win.cc(88)] thread ID 21028 not found in process
I've posted here on ServerFault rather than StackOverflow because
A process has requested access to an object, but has not been granted those access rights
Seems to be a common error other applications have. I'm fairly certain its a permission error, however..
I'm logged in as local administrator and I'm running my c# app that spaws the other processes ChromeDriver and Chrome as local administrator.
I've also set the everyone permission to full access on the applications folder.
What else can I do to allow my app, chrome, and chrome driver more access rights?