# 01-Setup-WaxAndTrace.ps1 — Wax and Trace-specific setup (runs after Shopfloor baseline) Write-Host "=== Wax and Trace Setup ===" # --- Add Wax and Trace credentials --- # cmdkey /generic:wax-server /user:domain\waxuser /pass:password # --- Install Wax and Trace applications --- # Start-Process msiexec.exe -ArgumentList '/i "C:\Enrollment\shopfloor-setup\WaxAndTrace\WaxApp.msi" /qn' -Wait # --- Wax and Trace configuration --- # Set-ItemProperty -Path "HKLM:\SOFTWARE\CompanyName" -Name "PCType" -Value "WaxAndTrace" Write-Host "=== Wax and Trace Setup Complete ==="