Find computers with a specific user in local admin group
up vote
0
down vote
favorite
I need to check if a specific domain user is a member of a local administrators group.
I prefer to use Powershell, but the problem is that we are not allowing WinRM so I can't use PSRemoting, so I can't run Get-LocalGroupMember
or something.
Thanks alot for your help.
powershell
add a comment |
up vote
0
down vote
favorite
I need to check if a specific domain user is a member of a local administrators group.
I prefer to use Powershell, but the problem is that we are not allowing WinRM so I can't use PSRemoting, so I can't run Get-LocalGroupMember
or something.
Thanks alot for your help.
powershell
Without PSRemoting you can't.
– TobyU
Nov 22 at 13:05
ok, so any other suggestions?
– WebsGhost
Nov 22 at 13:10
2
You could use a PowerShell script which writes the data you want onto a share for example and deploy it as startup script using a GPO.
– TobyU
Nov 22 at 13:15
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I need to check if a specific domain user is a member of a local administrators group.
I prefer to use Powershell, but the problem is that we are not allowing WinRM so I can't use PSRemoting, so I can't run Get-LocalGroupMember
or something.
Thanks alot for your help.
powershell
I need to check if a specific domain user is a member of a local administrators group.
I prefer to use Powershell, but the problem is that we are not allowing WinRM so I can't use PSRemoting, so I can't run Get-LocalGroupMember
or something.
Thanks alot for your help.
powershell
powershell
edited Nov 22 at 15:06
James C.
8,20222030
8,20222030
asked Nov 22 at 13:04
WebsGhost
245
245
Without PSRemoting you can't.
– TobyU
Nov 22 at 13:05
ok, so any other suggestions?
– WebsGhost
Nov 22 at 13:10
2
You could use a PowerShell script which writes the data you want onto a share for example and deploy it as startup script using a GPO.
– TobyU
Nov 22 at 13:15
add a comment |
Without PSRemoting you can't.
– TobyU
Nov 22 at 13:05
ok, so any other suggestions?
– WebsGhost
Nov 22 at 13:10
2
You could use a PowerShell script which writes the data you want onto a share for example and deploy it as startup script using a GPO.
– TobyU
Nov 22 at 13:15
Without PSRemoting you can't.
– TobyU
Nov 22 at 13:05
Without PSRemoting you can't.
– TobyU
Nov 22 at 13:05
ok, so any other suggestions?
– WebsGhost
Nov 22 at 13:10
ok, so any other suggestions?
– WebsGhost
Nov 22 at 13:10
2
2
You could use a PowerShell script which writes the data you want onto a share for example and deploy it as startup script using a GPO.
– TobyU
Nov 22 at 13:15
You could use a PowerShell script which writes the data you want onto a share for example and deploy it as startup script using a GPO.
– TobyU
Nov 22 at 13:15
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
I recommend you to have a look on PowerView. Get-NetLocalGroup
queries the information via WinNT provider or on demand via WinAPI.
Refer to harmj0y's blog for more information.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
I recommend you to have a look on PowerView. Get-NetLocalGroup
queries the information via WinNT provider or on demand via WinAPI.
Refer to harmj0y's blog for more information.
add a comment |
up vote
0
down vote
I recommend you to have a look on PowerView. Get-NetLocalGroup
queries the information via WinNT provider or on demand via WinAPI.
Refer to harmj0y's blog for more information.
add a comment |
up vote
0
down vote
up vote
0
down vote
I recommend you to have a look on PowerView. Get-NetLocalGroup
queries the information via WinNT provider or on demand via WinAPI.
Refer to harmj0y's blog for more information.
I recommend you to have a look on PowerView. Get-NetLocalGroup
queries the information via WinNT provider or on demand via WinAPI.
Refer to harmj0y's blog for more information.
answered Nov 22 at 16:51
vrdse
1,589213
1,589213
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53431671%2ffind-computers-with-a-specific-user-in-local-admin-group%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Without PSRemoting you can't.
– TobyU
Nov 22 at 13:05
ok, so any other suggestions?
– WebsGhost
Nov 22 at 13:10
2
You could use a PowerShell script which writes the data you want onto a share for example and deploy it as startup script using a GPO.
– TobyU
Nov 22 at 13:15