Menü Schließen

Powershell ISO Mounten und Laufwerk unter Windows 10 bestimmen

PowerShell Logo

Nachfolgend ein paar Zeilen Powershell um eine ISO-Datei in Windows 10 (1709 x64) einzubinden um danach dann das Laufwerk zu bestimmen. Powershell läuft in Version 5.1

<# Mount ISO File in Windows 10 x64#>
clear
$ISOFile = "C:\Drivers\importantfiles.iso"

# check if ISO exists
if (Test-Path -Path $ISOFile -ErrorAction SilentlyContinue){
Write-Host "ISO found - Stating" -ForegroundColor Green
# mount iso
$MountResult = Mount-DiskImage -ImagePath $ISOFile
# get drive letter
$DriveLetter = (Get-DiskImage -ImagePath $ISOFile | Get-Volume).DriveLetter
Write-Host $DriveLetter":\"
# umount iso
Dismount-DiskImage -ImagePath $ISOFILE
}else{
Write-Host "ISO not found - End" -ForegroundColor Red
}

Have Fun

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert