xcat-core/xCAT-server/share/xcat/netboot/windows/nextdestiny.ps1
2013-03-25 19:37:36 +00:00

12 lines
648 B
PowerShell

$command=@{'command'='nextdestiny'}
if (!(Test-Path HKCU:\Software\xCAT)) {
mkdir HKCU:\Software\xCAT
$certstore = New-Object System.Security.Cryptography.X509Certificates.X509Store("My","CurrentUser")
$certstore.Open([System.Security.Cryptography.X509Certificates.OpenFlags]'Readwrite')
$cacert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2("$env:instdrv\xcat\ca.pem")
Set-ItemProperty HKCU:\Software\xCAT cacertthumb $cacert.thumbprint
Set-ItemProperty HKCU:\Software\xCAT serveraddress $env:master
Set-ItemProperty HKCU:\Software\xCAT servername $env:mastername
}
Send-xCATCommand $command