Hello,
UiPath is running on my local machine. We have a remote machine and I need to check what services are running and their status using the UiPath running on my local machine.
How can we do that?
Hello,
UiPath is running on my local machine. We have a remote machine and I need to check what services are running and their status using the UiPath running on my local machine.
How can we do that?
Regards
both those links arent helpful.
Im interested in REMOTE COMPUTER
Regards
Initiate a PowerShell with admin privileges and type the following :
Get-Service -ComputerName YourRemoteComputerName | Where Status -eq "Running" | Out-GridView
Additionally if you want to write your data to a text or csv file just modify it to
Txt file :
Get-Service | Where Status -eq "Running" | Out-File C:\ABC\Test.txt
Csv :
Get-Service | Where Status -eq "Running" | Out-File C:\Ishan\Test.csv