question

ManishChawda-0385 avatar image
0 Votes"
ManishChawda-0385 asked MotoX80 answered

Windows Server Task Manager Access

Hi,

I have to give access of of only task manager of Windows Server to TL/Head so that they can monitor users. Is there any way out so that I can give access to Non-Admin i.e. Domain Users access of only task manager of Windows Server by any means say Powershell / Tool or likewise.

Please help!

windows-server
· 1
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

Can anyone help me ?

0 Votes 0 ·
MotoX80 avatar image
0 Votes"
MotoX80 answered

I was just trying to verify that when you say "logged in", that you were referring to users who have a remote desktop session on your server as opposed to mapping a network drive to the server.

I did not see anything in the group policy documentation that looked like it might allow the access that you desire.

https://www.microsoft.com/en-us/download/details.aspx?id=25250

I have heard of this 3rd party tool that allows a user to run a program as an administrator account. I don't know if that would work for task manager or not.


https://robotronic.de/runasroben.html

Have you tried having your manager access the Terminal Services mmc snapin's?

https://techcommunity.microsoft.com/t5/ask-the-performance-team/ws2008-terminal-server-management-and-administration/ba-p/372790


http://woshub.com/how-to-run-tsadmin-msc-and-tsconfig-msc-snap-ins-on-windows-server-2012-rds/


In addition, there is no Security tab in the tsconfig.msc console in the RDP-Tcp connection properties. This tab was handy for granting permissions to the tech support team (non-admin group) to connect and manage user sessions on RDS host. I use the following command to give a specific group full control over the RDP sessions on the server:
wmic /namespace:\\root\CIMV2\TerminalServices PATH Win32_TSPermissionsSetting WHERE (TerminalName ="RDP-Tcp") CALL AddAccount "woshub\helpdeskteam",2

5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

MotoX80 avatar image
0 Votes"
MotoX80 answered

What specific information are they looking for?

In a Powershell prompt, the quser command should show who is logged on. You can then see the program names they are running via Get-Process and filtering on session ID.

 quser
 Get-Process | Where-Object -Property SI -eq 1

This is from Win10, but I would expect to set similar results on WinServer.

201048-capture.png



capture.png (150.2 KiB)
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

ManishChawda-0385 avatar image
0 Votes"
ManishChawda-0385 answered MotoX80 commented

I want that my domain user can have access of Task Manager of Server so that he can see all the task same as Administrator can. How to implement such thing ? Hope this is clear.

· 1
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

On my test VM, I have a non-administrator account named TestUser. It can launch task manager and see just about everything. One thing that I noticed was that the details tab does not display all of the processes, and it does not include the user name on every process.

201881-capture.png


I don't know of any way to make a user an administrator, but only for task manager. I check the Local Security Policy, but other than "Profile system performance", I didn't see anything that looked related.

This is why I asked: what specific information are they looking for? There may be other ways to get that data.




0 Votes 0 ·
capture.png (45.8 KiB)
ManishChawda-0385 avatar image
0 Votes"
ManishChawda-0385 answered MotoX80 commented

Thanks for all the pains.
The non-administrator is a person working as Team Lead and wants to see as to how many users have logged in etc.. details which related to Users. Is there any way around ?

· 1
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

Did you have them try the 2 commands that I posted in my first reply?

0 Votes 0 ·
ManishChawda-0385 avatar image
0 Votes"
ManishChawda-0385 answered MotoX80 commented

Yes, that gives them list of there profile only. They want to know all users who have logged in.

· 1
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

Just to verify.... this is a terminal server, and you have multiple users connecting to a remote desktop, correct? And when you log in as an administrator and run quser you can see the list of users. Is that correct?

0 Votes 0 ·
ManishChawda-0385 avatar image
0 Votes"
ManishChawda-0385 answered MotoX80 converted comment to answer

Instead of Administrator I want the Domain User to login and can view list of all users logged in same as the Administrator can log. Hope you are clear ?

5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.