0
我是PowerShell的新手。我期待到運行Windows 7遠程運行PowerShell命令的安全性?
在遠程PC遠程PC上運行PowerShell命令,我跑了以下PowerShell命令:
Enable-PSRemoting -Force
Set-Item WSMAN:\localhost\client\trustedhosts <host_ip>
Restart-Service WinRM
我進行主機PC上的最後兩個命令(但使用<remote_ip>
)。
我證實了這一工作確定有:
Invoke-Command -ComputerName <name> -Credential <username> -ScriptBlock { Get-ChildItem C:\ }
我的問題:這是安全的公共網絡上?我應該做其他事嗎?或者我應該使用SSL?如果是這樣,我該如何解決這個問題?