mirror of
https://github.com/jamesstringerparsec/Easy-GPU-PV.git
synced 2024-08-30 18:22:17 +00:00
Auto mount / dismount the disk
This commit is contained in:
parent
504088f8e9
commit
cd98f51860
@ -1,5 +1,11 @@
|
||||
$hostname = $ENV:COMPUTERNAME
|
||||
$DriveLetter = "F:"
|
||||
$VMname = "VM Name HERE"
|
||||
$hostname = $ENV:COMPUTERNAME
|
||||
$DriveLetter = "X:"
|
||||
|
||||
|
||||
$path = (Get-VM -VMName $VMname | Select-Object -Property VMId | Get-VHD).path
|
||||
$Unique = (Mount-VHD -Path $path -PassThru | Get-Disk | Get-Partition | Get-Volume | Where-Object size -GT 10GB)
|
||||
Get-Volume -UniqueId $unique.UniqueId | Get-Partition | Add-PartitionAccessPath -AccessPath $DriveLetter
|
||||
|
||||
# Get Third Party drivers used, that are not provided by Microsoft and presumably included in the OS
|
||||
$drivers = Get-WmiObject Win32_PNPSignedDriver | where {$_.DriverProviderName -eq "NVIDIA"}
|
||||
@ -46,3 +52,5 @@ foreach ($d in $drivers) {
|
||||
|
||||
}
|
||||
}
|
||||
Get-Volume -UniqueId $unique.UniqueId | Get-Partition | Remove-PartitionAccessPath -AccessPath $driveLetter
|
||||
Dismount-vhd -Path $path
|
||||
|
Loading…
Reference in New Issue
Block a user