저는 중간 규모의 회사에서 일하고 있으며 최근 XP 단계적 중단으로 인해 회사 전체의 최신 컴퓨터에서 Windows 7을 출시 할 예정입니다. 불행히도, 컴퓨터에 추가 드라이버가 필요한 RAID 카드가 포함되어 있기 때문에 문제가 발생했습니다.
도움을 청했지만 sysprep 및 unattend.xml에 대한 경험이 거의 없습니다 . 현재 방법 (아직 작동하지 않음)은 다음을 사용하여 컴퓨터의 모든 드라이버를 유지하는 것입니다.<PersistAllDeviceInstalls>true</PersistAllDeviceInstalls>
그것에 대한 자세한 정보를 기다리는 동안 다른 unattend.xml 작업을 시작했습니다 .
<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
<settings pass="windowsPE">
<component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Diagnostics>
<OptIn>false</OptIn>
</Diagnostics>
<DynamicUpdate>
<Enable>false</Enable>
<WillShowUI>OnError</WillShowUI>
</DynamicUpdate>
<EnableFirewall>true</EnableFirewall>
<UserData>
<AcceptEula>true</AcceptEula>
<!-- <FullName></FullName>
<Organization></Organization> -->
</UserData>
</component>
<component name="Microsoft-Windows-PnpCustomizationsWinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<DriverPaths>
<PathAndCredentials wcm:action="add" wcm:keyValue="1">
<Path>%configsetroot%\drivers</Path>
</PathAndCredentials>
</DriverPaths>
</component>
</settings>
</unattend>
내가 본 것에서 이것은에 모든 것을 복사 %configsetroot%\drivers
합니다 C:\Windows\ConfigSetRoot\
.
다음 디렉토리가 설정되어 있다고 가정합니다.
C:\WINDOWS\system32\sysprep>tree /f
Folder PATH listing
Volume serial number is 0006EFC4 64F5:C0E6
C:.
│ unattend.xml
│
└───drivers
lsi_sas.inf
lsi_sas.sys
R193683.txt
svlhx64.cat
예를 들어 sysprep.exe /oobe /generalize /unattend:unattend.xml
이 무인 파일이 작동합니까? 그렇다면 드라이버를 자동으로 설치하려면 어떻게해야합니까? 아마도 SynchronousCommand를 실행해야합니까 ? 그렇게해야한다면 어떻게 CMD 명령을 통해 해당 파일에서 드라이버를 설치할 수 있습니까?