Restart Automate.exe
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
13-09-19 06:15 AM
Hi,
I have a requirement wherein i need to restart automate.exe in run time resource machine without logging to that runtime resource machine. Is it possible to do so?
Thanks,
Sajit
------------------------------
Sajit Valloli
------------------------------
I have a requirement wherein i need to restart automate.exe in run time resource machine without logging to that runtime resource machine. Is it possible to do so?
Thanks,
Sajit
------------------------------
Sajit Valloli
------------------------------
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
19-09-19 06:20 AM
Hi Sajit,
This can be achievable. To do this you could learn and use of PowerShell commands from the Mircosoft Docs.
https://docs.microsoft.com/en-us/powershell/scripting/getting-started/getting-started-with-windows-powershell?view=powershell-6
------------------------------
Jega Avinasinathan
Customer Support Engineer
Blue Prism
------------------------------
This can be achievable. To do this you could learn and use of PowerShell commands from the Mircosoft Docs.
https://docs.microsoft.com/en-us/powershell/scripting/getting-started/getting-started-with-windows-powershell?view=powershell-6
- Remote into the runtime resource hosting machine via the PowerShell
- Enter-PSSession -ComputerName RuntimeResource01 -Credential USER
- Stop the runtime resource
- Get-Process Automate | Stop-Process
- Start the batch file that contains the execution command to initiate the runtime resource
- Start-Process -FilePath 'C:\Users\username\Folder\runtime_resource.bat'
------------------------------
Jega Avinasinathan
Customer Support Engineer
Blue Prism
------------------------------
Jega Avinasinathan
Customer Support Engineer
Blue Prism
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
20-09-19 08:01 AM
Unfortunately:
"To create remote sessions and run remote commands, by default, the current user must be a member of the Administrators group on the remote computer or provide the credentials of an administrator. Otherwise, the command fails."
We do not have administrator rights on runtime resources.
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_remote_requirements?view=powershell-6
------------------------------
Walter Koller
Solution Manager
Erste Group IT International GmbH
Europe/Vienna
------------------------------
"To create remote sessions and run remote commands, by default, the current user must be a member of the Administrators group on the remote computer or provide the credentials of an administrator. Otherwise, the command fails."
We do not have administrator rights on runtime resources.
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_remote_requirements?view=powershell-6
------------------------------
Walter Koller
Solution Manager
Erste Group IT International GmbH
Europe/Vienna
------------------------------
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
23-09-19 05:25 AM
Hi Walter,
Yes. To remotely shutdown or restart a workstation on your network, you need to have administrative rights on the target workstation, and it's not possible to do as a standard user.
------------------------------
Jega Avinasinathan
Customer Support Engineer
Blue Prism
------------------------------
Yes. To remotely shutdown or restart a workstation on your network, you need to have administrative rights on the target workstation, and it's not possible to do as a standard user.
------------------------------
Jega Avinasinathan
Customer Support Engineer
Blue Prism
------------------------------
Jega Avinasinathan
Customer Support Engineer
Blue Prism
