Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions Update-VMGpuPartitionDriver.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,19 @@ While ($VM.State -ne "Off") {
"Waiting for VM to shutdown - make sure there are no unsaved documents..."
}

if ($VHD -is [array]) {
$DiskPath = $VHD.Path[0]
} else {
$DiskPath = $VHD.Path
}
"Mounting Drive..."
$DriveLetter = (Mount-VHD -Path $VHD.Path -PassThru | Get-Disk | Get-Partition | Get-Volume | Where-Object {$_.DriveLetter} | ForEach-Object DriveLetter)
$DriveLetter = (Mount-VHD -Path $DiskPath -PassThru | Get-Disk | Get-Partition | Get-Volume | Where-Object {$_.DriveLetter} | ForEach-Object DriveLetter)

"Copying GPU Files - this could take a while..."
Add-VMGPUPartitionAdapterFiles -hostname $Hostname -DriveLetter $DriveLetter -GPUName $GPUName

"Dismounting Drive..."
Dismount-VHD -Path $VHD.Path
Dismount-VHD -Path $DiskPath

If ($state_was_running){
"Previous State was running so starting VM..."
Expand Down