Initial commit: loc_az_hci (smom-dbis-138 excluded via .gitignore)
Some checks failed
Test / test (push) Has been cancelled
Some checks failed
Test / test (push) Has been cancelled
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -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
|
||||
|
||||
24
infrastructure/router-server/install-hyper-v-host.ps1
Normal file
24
infrastructure/router-server/install-hyper-v-host.ps1
Normal 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
|
||||
}
|
||||
|
||||
5
infrastructure/router-server/install-powershell-dsc.ps1
Normal file
5
infrastructure/router-server/install-powershell-dsc.ps1
Normal 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
|
||||
|
||||
10
infrastructure/router-server/install-proxmox-router.sh
Executable file
10
infrastructure/router-server/install-proxmox-router.sh
Executable 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."
|
||||
|
||||
@@ -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
|
||||
|
||||
13
infrastructure/router-server/install-windows-server-core.ps1
Normal file
13
infrastructure/router-server/install-windows-server-core.ps1
Normal 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
|
||||
|
||||
Reference in New Issue
Block a user