16 Eylül 2020 Çarşamba

Powershell New-PSSession

Giriş
Invoke-Command -Session $remoteSession -ArgumentList(...) -ScriptBlock {...} şeklinde uzak makinede komut çalıştırmak içindir.

Session ile işimiz bitince Remove PSSession ile kapatılır

Örnek
Şöyle yaparızz
$username = "myuser"
$password = "mypassword"
$secureString = ConvertTo-SecureString $password -ASPlainText -Force


$credentials = New-Object System.Management.Automation.PSCredentials($username,
  $secureString)
$computer = "..."
$remoteSession = New-PSSession $computer -Credential $credentials
...
Remove PSSession -Session $remoteSession

Hiç yorum yok:

Yorum Gönder