Installiert die Grund-Komponenten für Akros MA Notebooks mit Boxstarter Start » run PowerShell.exe -noexit -ExecutionPolicy Bypass » Session wechseln in den elevated state # 1. Boxstarter installieren . { iwr -useb https://boxstarter.org/bootstrapper.ps1 } | iex; Get-Boxstarter -Force # 2. BoxStarter starten und die Standard-Pakete vom Web installieren Install-BoxstarterPackage -Package 'https://www.akros.ch/it/Chocolatey/Install-Boxstarter-Akros-MA-Notebook-Step1-Web.ps1' -DisableReboots # 3. BoxStarter starten und die Pakete von \\akros.ch\Ablage\ installieren # In einer neuen BoxStarter Sitzung, # nachdem der Client Zugriff hat auf: # \\akros.ch\Ablage\Software\Chocolatey Install-BoxstarterPackage -Package '\\akros.ch\Ablage\Software\Chocolatey\Install-Boxstarter-Akros-MA-Notebook-Step2-LAN.ps1' -DisableReboots # Alternative: nur Chocolatey installieren PowerShell.exe -noexit -ExecutionPolicy Bypass iex ((New-Object System.Net.WebClient).DownloadString('http://internal/odata/repo/ChocolateyInstall.ps1')) Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))