Estou tentando usar o seguinte script:
$password = ConvertTo-SecureString "xxxx" -AsPlainText -Force
$cred = New-Object System.Management.Automation.PSCredential("domain\Administrator", $password)
$session = New-PSSession 192.168.xxx.xxx -Credential $cred
Invoke-Command -Session $session -ScriptBlock { New-Cluster -Name "ClusterTest" -Node HOSTNAME }
Para criar remotamente um cluster (para fins de teste) em uma VM do Windows Server 2012. Estou recebendo o seguinte erro:
An error occurred while performing the operation.
An error occurred while creating the cluster 'ClusterTest'.
An error occurred creating cluster 'ClusterTest'.
No credentials are available in the security package
+ CategoryInfo : NotSpecified: (:) [New-Cluster], ClusterCmdletException
+ FullyQualifiedErrorId : New-Cluster,Microsoft.FailoverClusters.PowerShell.NewClusterCommand
Todos os meus outros comandos remotos (instalação / alteração de DNS, DHCP, NPAS, GP, etc.) funcionam sem problemas. Por que esse é diferente? A única diferença está na tag -ScriptBlock. Socorro!
Tags windows powershell