Android Client for Powershell Remote Scripting?

Does anyone know a good client for remote Powershell scripts on a local network?

I understand that WinRM is required on the client to enable the remote script.

WinRM: "Windows Remote Management (WinRM) is an implementation of the Microsoft WS-Management Protocol, a standard Simple Access Access Protocol (SOAP) protocol that is compatible with a firewall that allows hardware and operating systems from different vendors to communicate." http://msdn.microsoft.com/en-us/library/aa384426(v=vs.85).aspx

If the WinRM client is not available for Android, but the WS-Management protocol client, can you use the latter for a remote script?

+3
source share
2 answers

I have not tried this myself, but it might work.

http://www.powershellinside.com/powershell/ssh/

If I understand that you ran this on a Windows server, you can connect through any SSH client to it and get a PowerShell session.

+1
source

You will need PowerShell on the client to use PowerShell remote access. However, you can run PowerShell commands on the server using the WinRM client. I can not find the article I read, I will try to publish it later.

I do not know about using any client compatible with WS-Management.

0
source

Source: https://habr.com/ru/post/1792070/


All Articles