VSphere 8.0 Continued
Prerequisites
- Configured ESXi Host
- Basic PowerShell Knowledge
- PowerCli Installed
- Windows Server 2022 Evaluation ISO
- Download link
- VMWare's VMRC Installed
- Download link
Sysadmin by day. Father, Husband, and aspiring DevOps Professional by Night
why you no build
Read-Host -AsSecureString | Export-Clixml -Path C:\Temp\TTELAB.xml -Force
$secureVaultPasswordPath = 'C:\Temp\TTELAB.xml'
Register-SecretVault -Name TTELAB -ModuleName Microsoft.PowerShell.SecretStore -DefaultVault
$vaultUnlockPassword = Import-CliXml -Path $secureVaultPasswordPath
Unlock-SecretStore -Password $vaultUnlockPassword
$storeConfiguration = @{
Authentication = 'Password'
PasswordTimeout = 3600 # 1 hour
Interaction = 'None'
Confirm = $false
}
Set-SecretStoreConfiguration @storeConfiguration