Public/OSDCloudTS/Start-DISMFromOSDCloudUSB.ps1
Function Start-DISMFromOSDCloudUSB { [CmdletBinding()] param ( [Parameter()] [System.String] $PackageID ) if ($env:SystemDrive -eq 'X:') { $OSDCloudUSB = Get-Volume.usb | Where-Object {($_.FileSystemLabel -match 'OSDCloud') -or ($_.FileSystemLabel -match 'BHIMAGE')} | Select-Object -First 1 if ($OSDCloudUSB){ $OSDCloudDriveLetter = $OSDCloudUSB.DriveLetter } $MappedDrives = (Get-CimInstance -ClassName Win32_MappedLogicalDisk).DeviceID | Select-Object -Unique if ($MappedDrives){ ForEach ($MappedDrive in $MappedDrives){ if (Test-Path -Path "$MappedDrive\OSDCloud"){ $OSDCloudDriveLetter = $MappedDrive.replace(":","") } } } if ($OSDCloudDriveLetter){ $ComputerProduct = (Get-MyComputerProduct) $ComputerModel = (Get-MyComputerModel) if (!($PackageID)){ $DriverPack = Get-OSDCloudDriverPack -Product $ComputerProduct if ($DriverPack){ $PackageID = $DriverPack.PackageID } } $ComputerManufacturer = (Get-MyComputerManufacturer -Brief) if ($ComputerManufacturer -match "Samsung"){$ComputerManufacturer = "Samsung"} $DriverPathProduct = "$($OSDCloudDriveLetter):\OSDCloud\DriverPacks\DISM\$ComputerManufacturer\$ComputerProduct" $DriverPathModel = "$($OSDCloudDriveLetter):\OSDCloud\DriverPacks\DISM\$ComputerManufacturer\$ComputerModel" if ($PackageID){ $DriverPathPackageID = "$($OSDCloudDriveLetter):\OSDCloud\DriverPacks\DISM\$ComputerManufacturer\$PackageID" } Write-Host "Checking locations for Drivers" -ForegroundColor Green if ($PackageID){ if (Test-Path $DriverPathPackageID){$DriverPath = $DriverPathPackageID} } if (Test-Path $DriverPathProduct){$DriverPath = $DriverPathProduct} if (Test-Path $DriverPathModel){$DriverPath = $DriverPathModel} if (Test-Path $DriverPath){ Write-Host "Found Drivers: $DriverPath" -ForegroundColor Green Write-Host "Starting DISM of drivers while Offline" -ForegroundColor Green $DismPath = "$env:windir\System32\Dism.exe" $DismProcess = Start-Process -FilePath $DismPath -ArgumentList "/image:c:\ /Add-Driver /driver:`"$($DriverPath)`" /recurse" -Wait -PassThru Write-Host "Finished Process with Exit Code: $($DismProcess.ExitCode)" } } } else { Write-Output "Skipping Start-DISMFromOSDCloudUSB Function, not running in WinPE" } } |