是否可以从服务器中提取驱动程序?
我有一台可以运行的 HP 服务器,我想重新铺设,但是我似乎找不到能够使 Windows 服务器安装程序识别磁盘阵列(即未发现磁盘/控制器)的智能启动版本,也找不到任何可以运行的特定驱动程序安装。
我希望我可以从机器中提取工作磁盘/ RAID 驱动程序并在 Windows 安装期间加载这些驱动程序。
有什么想法吗?
直流
答案1
自我回答:是的。事实证明,您可以使用 powershell 来提取已安装的任何自定义驱动程序。
其要点如下:
Get-WindowsDriver -online | % { $dir = Split-Path $_.OriginalFileName -Parent ; $subdir = Split-Path $dir -Leaf ; $driverDest = "$destination\$subdir"; Write-Host "Copying $dir to $driverDest\$subdir" ; Copy-Item -Path $dir -Destination $driverDest -Recurse }