Is there a way of knowing who the owner of an Explorer window is, and their groups/account rights?

-1

Related question: Opening Explorer shell with admin privileges on XP (with IE7 installed)

Once an Explorer window is opened, how can we tell the difference between one that is running as Admin and others that are running as the normal user?

Peter Nimmo

Posted 2014-01-17T19:28:36.790

Reputation: 155

1If you know the answer why don't you post the answer in the existing question? I am confused by your question to be honest. Its fine you have a releated question but I don't understand how the linked question should be the contents of this question, the linked question, wants to know how to open a windows exploer window through a command prompt. Which isn't what you want to know at least not based on the title of this question. – Ramhound – 2014-01-17T19:45:30.527

The question was asked as a comment in the other question, so the answer should have been another comment in reply, but my rep isn't high enough to do that. So it wouldn't be the answer to the question on how to open an explorer shell with admin priviledges – Peter Nimmo – 2014-01-20T12:03:11.970

Answers

1

The answer is PrivBar by Aaron Margosis.

There is another problem you might have (well I did!) where you cannot register PrivBar because the user you want it registered with does not have the requisite rights to run Regsvr32.

Part of the answer to this problem is RegSvrEx by Rama Krishna Vavilala which allows you to register a DLL to the current user, however when I tried that I got 'access denied'

I figured out that I could use RunAs to gain me the correct privileges, however then the problem would be that it would be launching the registration under the administrative account, and no longer the limited account I wanted therefore it would register it under the wrong account.

Reading the help information on RunAs I arrived at the solution:

C:\Work>RunAs /env /user:SOMEDOMAINORMACHINE\some.user "c:\utils2\RegSvrEx.exe /c Privbar.dll"

Peter Nimmo

Posted 2014-01-17T19:28:36.790

Reputation: 155