问题
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!
回答1:
Could be a bandwidth issue. Does this run any faster?
convertfrom-csv (Invoke-Command -ComputerName someComputerName -ScriptBlock { ls C:\ | convertto-csv} -credential myUsername)
来源:https://stackoverflow.com/questions/19039422/powershell-invoke-command-performance-issue