You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be really useful if New-Fleet -Cluster would mount image on remote machine... I was achieving this with icm and credssp, but it no longer works. It would prevent copying stuff over and over to remote machine and also you need to have hyper-v installed (would be more useful to mount vhd on cluster node).
$password=ConvertTo-SecureString"LS1setup!"-AsPlainText -Force
$Credentials=New-Object System.Management.Automation.PSCredential ("CORP\LabAdmin",$password)
Invoke-Command-ComputerName $Nodes[0] -Credential $Credentials-Authentication Credssp -ScriptBlock {
#It's probably more convenient to run this command on cluster (using invoke-command) as all VHD copying will happen on cluster itself.New-Fleet-BaseVHD "c:\ClusterStorage\Collect\$using:VHDName"-AdminPass P@ssw0rd-Admin Administrator -ConnectUser corp\LabAdmin -ConnectPass LS1setup!
}
The text was updated successfully, but these errors were encountered:
It would be really useful if New-Fleet -Cluster would mount image on remote machine... I was achieving this with icm and credssp, but it no longer works. It would prevent copying stuff over and over to remote machine and also you need to have hyper-v installed (would be more useful to mount vhd on cluster node).
The text was updated successfully, but these errors were encountered: