sniper8952
Lt. Junior Grade
- Registriert
- Juni 2008
- Beiträge
- 353
Hallo Zusammen
Ich habe folgendes Script im Powershell:
Set-ExecutionPolicy Unrestricted -Scope CurrentUser -force
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
choco install vlc -y --acceptlicense # (CMD)
Invoke-Expression -Command "choco install vlc -y --acceptlicense" # (PowerSHELL)
choco install adobereader -y --acceptlicense # (CMD)
Invoke-Expression -Command "choco install adobereader -y --acceptlicense" # (PowerSHELL)
choco install teamviewer -y --acceptlicense # (CMD)
Invoke-Expression -Command "choco install teamviewer -y --acceptlicense" # (PowerSHELL)
choco install firefox -y --acceptlicense # (CMD)
Invoke-Expression -Command "choco install firefox -y --acceptlicense" # (PowerSHELL)
choco install googlechrome -y --acceptlicense # (CMD)
Invoke-Expression -Command "choco install google-chrome -y --acceptlicense" # (PowerSHELL)
choco install microsoft-edge -y --acceptlicense # (CMD)
Invoke-Expression -Command "choco install microsoft-edge -y --acceptlicense" # (PowerSHELL)
Import-StartLayout -LayoutPath D:\Kundeninstallation\Startlayout.xml -MountPath $env:SystemDrive\ -verbose
Ich möchte das beim importieren nach einem USB Stick gesucht wird oder ich den Laufwerkbuchstaben neu vergebe.
Mein jetztiges Problem ist nämlich, dass wenn ein CD Laufwerk vorhanden ist, dann dieser den Laufwerkbuchstaben D: hat und dann mein Script nicht funktioniert.
Wie kann ich den Pfad angeben ohne das ich, dass Script immer wieder ändern muss?
Gruss
Sniper8952
Ich habe folgendes Script im Powershell:
Set-ExecutionPolicy Unrestricted -Scope CurrentUser -force
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
choco install vlc -y --acceptlicense # (CMD)
Invoke-Expression -Command "choco install vlc -y --acceptlicense" # (PowerSHELL)
choco install adobereader -y --acceptlicense # (CMD)
Invoke-Expression -Command "choco install adobereader -y --acceptlicense" # (PowerSHELL)
choco install teamviewer -y --acceptlicense # (CMD)
Invoke-Expression -Command "choco install teamviewer -y --acceptlicense" # (PowerSHELL)
choco install firefox -y --acceptlicense # (CMD)
Invoke-Expression -Command "choco install firefox -y --acceptlicense" # (PowerSHELL)
choco install googlechrome -y --acceptlicense # (CMD)
Invoke-Expression -Command "choco install google-chrome -y --acceptlicense" # (PowerSHELL)
choco install microsoft-edge -y --acceptlicense # (CMD)
Invoke-Expression -Command "choco install microsoft-edge -y --acceptlicense" # (PowerSHELL)
Import-StartLayout -LayoutPath D:\Kundeninstallation\Startlayout.xml -MountPath $env:SystemDrive\ -verbose
Ich möchte das beim importieren nach einem USB Stick gesucht wird oder ich den Laufwerkbuchstaben neu vergebe.
Mein jetztiges Problem ist nämlich, dass wenn ein CD Laufwerk vorhanden ist, dann dieser den Laufwerkbuchstaben D: hat und dann mein Script nicht funktioniert.
Wie kann ich den Pfad angeben ohne das ich, dass Script immer wieder ändern muss?
Gruss
Sniper8952