- Shopfloor PC type menu (CMM, WaxAndTrace, Keyence, Genspect, Display, Standard) - Baseline scripts: OpenText CSF, Start Menu shortcuts, network/WinRM, power/display - Standard type: eDNC + MarkZebra with 64-bit path mirroring - CMM type: Hexagon CLM Tools, PC-DMIS 2016/2019 R2 - Display sub-type: Lobby vs Dashboard - Webapp: enrollment management, image config editor, UI refresh - Upload-Image.ps1: robocopy MCL cache to PXE server - Download-Drivers.ps1: Dell driver download pipeline - Slim Blancco GRUB EFI (10MB -> 660KB) for old hardware compat - Shopfloor display imaging guide docs Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
10 lines
388 B
PowerShell
10 lines
388 B
PowerShell
# 04-NetworkAndWinRM.ps1 — Set network profiles to Private and enable WinRM (baseline)
|
|
|
|
# --- Set all network profiles to Private ---
|
|
Get-NetConnectionProfile | Set-NetConnectionProfile -NetworkCategory Private
|
|
Write-Host "All network profiles set to Private."
|
|
|
|
# --- Enable and configure WinRM ---
|
|
Enable-PSRemoting -Force -SkipNetworkProfileCheck
|
|
Write-Host "WinRM enabled."
|