Question:
I have a Windows 10 host machine that connects to a Hyper-V Windows 10 VM hosted on the same box.
I’ve been following along the Pluralsight PowerShell tutorial.
I’m trying to get the services available on a remote computer.
I can start a session on the remote computer with the following command:
1 2 |
Enter-PSSession -ComputerName Client1 -Credential username |
Once the session has started and I am connected, I attempt to call Get-Service to identify the services on the client computer.
1 2 |
[Client1]: PS C:\Users\username\Documents>Get-Service |
When I run the above command, I get the following error message:
1 2 3 |
Remote host method get_WindowSize is not implemented. + CategoryInfo : ResourceUnavailable: (:) [out-lineoutput], PSRemotingDataStructureException + FullyQualifiedErrorId : System.Management.Automation.Remoting.PSRemotingDataStructureException,Microsoft.PowerShell.Commands.OutLineOutputCommand |
I am running the same version of PowerShell on the host and client machines (5.1.18362.145).
I assume that somehow this is an issue on the client machine?
Answer:
[Client1]: PS C:\Users\username\Documents>Get-Service | out-string
That should work, maybe a bug with PowerShell or new version of Windows 10