Question

There are a few computers on my domain that I have access to remote into with PowerShell. I'm getting extremely slow performance when I remote into a particular computer with a command like this:

Invoke-Command -ComputerName someComputerName -ScriptBlock { ls C:\ } -credential myUsername

It takes about 10 seconds to display each file/folder on the drive. If I run the same command from within a session using Enter-PSSession then there are no performance issues. Also if I run a command like Get-Alias with Invoke-Command there are no performance issues. Lastly I can run any command on any other computer without any performance issues.

Any idea what could be causing this? Thanks!

Was it helpful?

Solution

Could be a bandwidth issue. Does this run any faster?

convertfrom-csv (Invoke-Command -ComputerName someComputerName -ScriptBlock { ls C:\ | convertto-csv} -credential myUsername)
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top