Easy-GPU-PV/CopyFilesToVM.ps1

64 lines
3.4 KiB
PowerShell
Raw Normal View History

2021-06-23 13:01:27 +00:00
Function Add-VMGpuPartitionAdapterFiles {
param(
2021-06-23 13:55:48 +00:00
[string]$VMname = "GPU-P",
2021-06-23 13:01:27 +00:00
[string]$hostname = $ENV:COMPUTERNAME,
[string]$DriveLetter = "X:"
)
2021-06-23 13:55:48 +00:00
$VHDpath = (Get-VM -VMName $VMname | Select-Object -Property VMId | Get-VHD).path
2021-06-24 12:31:39 +00:00
$Unique = (Mount-VHD -Path $VHDpath -PassThru | Get-Disk | Get-Partition | Get-Volume | Where-Object size -GT 10GB)
2021-06-23 11:12:12 +00:00
Get-Volume -UniqueId $unique.UniqueId | Get-Partition | Add-PartitionAccessPath -AccessPath $DriveLetter
2021-06-22 22:28:33 +00:00
# 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"}
New-Item -ItemType Directory -Path "$DriveLetter\windows\system32\HostDriverStore" -Force | Out-Null
# Initialize the list of detected driver packages as an array
$DriverFolders = @()
foreach ($d in $drivers) {
# We initialize the list of driver files for each driver
$DriverFiles = @()
# For each driver instance from WMI class Win32_PNPSignedDriver, we compose the related WMI object name from the other WMI driver class, Win32_PNPSignedDriverCIMDataFile
$ModifiedDeviceID = $d.DeviceID -replace "\\", "\\"
$Antecedent = "\\" + $hostname + "\ROOT\cimv2:Win32_PNPSignedDriver.DeviceID=""$ModifiedDeviceID"""
# Get all related driver files for each driver listed in WMI class Win32_PNPSignedDriver
$DriverFiles += Get-WmiObject Win32_PNPSignedDriverCIMDataFile | where {$_.Antecedent -eq $Antecedent}
$DriverName = $d.DeviceName
$DriverID = $d.DeviceID
Write-Host "####Driver files for driver with name: $DriverName" -ForegroundColor Green
Write-Host "and with DriverID: $DriverID" -ForegroundColor Green
2021-06-23 13:01:27 +00:00
if ($DriverName -like "NVIDIA*") {
New-Item -ItemType Directory -Path "$driveletter\Windows\System32\drivers\Nvidia Corporation\" -Force | Out-Null
}
2021-06-22 22:28:33 +00:00
foreach ($i in $DriverFiles) {
# We elliminate double backslashes from the file paths
$path = $i.Dependent.Split("=")[1] -replace '\\\\', '\'
$path2 = $path.Substring(1,$path.Length-2)
$InfItem = Get-Item -Path $path2
$Version = $InfItem.VersionInfo.FileVersion
If ($path2 -like "c:\windows\system32\driverstore\*") {
2021-06-23 13:01:27 +00:00
$ParseDestination = $path2.Replace("c:","$driveletter").Replace("driverstore","HostDriverStore")
$Destination = $ParseDestination.SubString(0, $ParseDestination.LastIndexOf('\'))
New-Item -ItemType Directory -Path "$Destination" -Force | Out-Null
Copy-Item $path2 -Destination $Destination -Force
Write-Host "Copied $path2 to $Destination" -ForegroundColor Green
2021-06-22 22:28:33 +00:00
}
Else {
2021-06-23 13:01:27 +00:00
$ParseDestination = $path2.Replace("c:", "$driveletter")
$Destination = $ParseDestination.Substring(0, $ParseDestination.LastIndexOf('\'))
if (!$(Get-Item -Path $Destination -ErrorAction SilentlyContinue).Exists ) {
New-Item -ItemType Directory -Path $Destination -Force | Out-Null
}
Copy-Item $path2 -Destination $Destination -Force
Write-Host "Copied $path2 to $Destination" -ForegroundColor Green
2021-06-22 22:28:33 +00:00
}
}
2021-06-22 22:51:04 +00:00
}
2021-06-23 11:12:12 +00:00
Get-Volume -UniqueId $unique.UniqueId | Get-Partition | Remove-PartitionAccessPath -AccessPath $driveLetter
2021-06-23 13:55:48 +00:00
Dismount-vhd -Path $VHDpath
2021-06-23 13:01:27 +00:00
}
2021-06-23 13:55:48 +00:00
Add-VMGpuPartitionAdapterFiles