query: add page (#6719)

beep
Sebastian Staudt 2021-10-12 08:32:22 +02:00 committed by GitHub
parent e599b2e73e
commit 9cec233eb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 28 additions and 0 deletions

28
pages/windows/query.md Normal file
View File

@ -0,0 +1,28 @@
# query
> Displays information about user sessions and process.
> More information: <https://docs.microsoft.com/windows-server/administration/windows-commands/query>.
- Display all user sessions:
`query session`
- Display the current user sessions on a remote computer:
`query session /server:{{hostname}}`
- Display logged in users:
`query user`
- Display all user sessions on a remote computer:
`query session /server:{{hostname}}`
- Display all running processes:
`query process`
- Display running processes by session or user name:
`query process {{session_name|user_name}}`