Search found 1 match

by Bruhz
Wed Mar 27, 2024 10:29 pm
Forum: Advanced MakeMKV usage
Topic: Powershell script to auto rip discs to iso using native MakeMKV
Replies: 0
Views: 13886

Powershell script to auto rip discs to iso using native MakeMKV

while ($true) {
$initialLabel = ""
# Initially set $currentLabel to the current volume label
$currentLabel = (Get-Volume | Where-Object {$_.DriveLetter -eq "E"}).FileSystemLabel

# Wait for the volume label to change from its initial value
while ($currentLabel -eq $initialLabel) {
Write-Host ...