Initial commit: loc_az_hci (smom-dbis-138 excluded via .gitignore)
Some checks failed
Test / test (push) Has been cancelled

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
defiQUG
2026-02-08 09:04:46 -08:00
commit c39465c2bd
386 changed files with 50649 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
# Configure Azure Stack HCI Integration
Write-Host "Configure Azure Stack HCI integration." -ForegroundColor Yellow
Write-Host "See Azure Stack HCI documentation for configuration steps." -ForegroundColor Yellow

View File

@@ -0,0 +1,24 @@
# Install Hyper-V Host Role
$ErrorActionPreference = "Stop"
Write-Host "=========================================" -ForegroundColor Cyan
Write-Host "Hyper-V Host Role Installation" -ForegroundColor Cyan
Write-Host "=========================================" -ForegroundColor Cyan
# Check if running as Administrator
if (-NOT ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]::Administrator)) {
Write-Host "This script requires Administrator privileges." -ForegroundColor Red
exit 1
}
Write-Host "`nInstalling Hyper-V role..." -ForegroundColor Yellow
try {
Install-WindowsFeature -Name Hyper-V -IncludeManagementTools -Restart
Write-Host "Hyper-V installed successfully. System will restart." -ForegroundColor Green
}
catch {
Write-Host "Error installing Hyper-V: $_" -ForegroundColor Red
exit 1
}

View File

@@ -0,0 +1,5 @@
# Install PowerShell DSC Modules for HCI Automation
Write-Host "Install PowerShell DSC modules:" -ForegroundColor Yellow
Write-Host "Install-Module -Name xHyper-V, xStorage, xNetworking -Force" -ForegroundColor White

View File

@@ -0,0 +1,10 @@
#!/bin/bash
# Install Proxmox VE on Router Server (Option B)
echo "========================================="
echo "Proxmox VE Installation on Router Server"
echo "========================================="
echo "Install Proxmox VE from installation media."
echo "See Proxmox VE installation documentation."

View File

@@ -0,0 +1,14 @@
# Install Windows Admin Center (WAC)
$ErrorActionPreference = "Stop"
Write-Host "=========================================" -ForegroundColor Cyan
Write-Host "Windows Admin Center Installation" -ForegroundColor Cyan
Write-Host "=========================================" -ForegroundColor Cyan
Write-Host "`nDownload and install Windows Admin Center:" -ForegroundColor Yellow
Write-Host "1. Download from: https://aka.ms/WACDownload" -ForegroundColor White
Write-Host "2. Run installer: WindowsAdminCenter.msi" -ForegroundColor White
Write-Host "3. Configure gateway settings" -ForegroundColor White
Write-Host "4. Access via: https://localhost:443" -ForegroundColor White

View File

@@ -0,0 +1,13 @@
# Install Windows Server Core
# This script provides installation guidance
Write-Host "=========================================" -ForegroundColor Cyan
Write-Host "Windows Server Core Installation" -ForegroundColor Cyan
Write-Host "=========================================" -ForegroundColor Cyan
Write-Host "`nInstall Windows Server Core from installation media." -ForegroundColor Yellow
Write-Host "1. Boot from Windows Server installation media" -ForegroundColor White
Write-Host "2. Select Windows Server Core option" -ForegroundColor White
Write-Host "3. Complete installation wizard" -ForegroundColor White
Write-Host "4. Configure initial settings" -ForegroundColor White