1,303 questions
Hi,
Admin account is not required to run Get-Service. Use Invoke-Command if you want to run the command with the specified account.
$cred = Get-Credential
Invoke-Command -ComputerName YourComputerName -Credential $cred -ScriptBlock {Get-Service}
Best Regards,
Ian Xue
If the Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.