Как выполнить импорт-PSSession сеанса подключения к серверу vmware vcenter? - PullRequest
0 голосов
/ 13 октября 2018

Мне нужно установить сеанс подключения к серверу vcenter в моем сценарии. У меня есть командлет connect-VIServer для подключения к серверу vcenter. Но я не могу принять и поддерживать сеанс на протяжении всего сценария.Мне нужно повторно использовать сеанс сервера vcenter ..

$vcsession = Connect-VIServer -Server xxxx
Import-PSSession -Session $session
Import-PSSession : Cannot bind parameter 'Session'. Cannot convert the "xxxxx.xxx.com" value of type "VMware.VimAutomation.ViCore.Impl.V1.VIServerImpl" to type "System.Management.Automation.Runspaces.PSSession".

Enter-PSSession -Session $vcsession
Enter-PSSession : Cannot bind parameter 'Session'. Cannot convert the 
"xxxx.xxx.com" value of type 
"VMware.VimAutomation.ViCore.Impl.V1.VIServerImpl" to type "System.Management.Automation.Runspaces.PSSession".

New-PSSession -Session $session.SessionSecret
New-PSSession : Cannot bind parameter 'Session'. Cannot convert the ""b4b7be33bcace66b284f60ed09c86d83e119f1ff"" value of type "System.String" to type "System.Management.Automation.Runspaces.PSSession".At line:1 char:24
...