Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does IntelliJ start processes with Administrator rights?

I'm running IntelliJ on Windows 7 and I'm trying to solve a problem where I can't get Selenium to start. I think it might be related to privileges.

I'm starting IntelliJ with "Run as Administrator". Are the processes that are started by IntelliJ also then given Administrator rights?

like image 860
Rachel Avatar asked Oct 12 '11 07:10

Rachel


People also ask

Is IntelliJ IDEA free?

IntelliJ IDEA Community Edition and IntelliJ IDEA Edu are free and can be used without any license.


2 Answers

Yes, all the child processes should inherit the parent privileges.

like image 175
CrazyCoder Avatar answered Sep 21 '22 07:09

CrazyCoder


Absolutely yes, in fact it is very difficult for an elevated process to start a process that is not elevated. You would have to use the Windows API, jump through a lot of hoops and it would work only in certain circumstances.

like image 40
Ingo Kegel Avatar answered Sep 21 '22 07:09

Ingo Kegel