6세대 이상의 컴퓨터에 윈도우 7설치시 문제 Xhci

2025-03-15 22:29
76
1
-
- 첨부파일 : DISM GUI.exe (110.0K) - 다운로드
본문
6세대 때부터 Xhci가 적용되기 시작했고, 그로 인해 윈도우7 설치에 문제를 야기했다.
윈도우 7 설치시 USB가 전부 먹통이 되는 증상이다. 그로 인해 키보드 마우스 사용이 불가능하고, USB를 통한 복사가 불가능 하다.
지금은 구하기 힘들고, 보기도 힘든 PS/2 키보드 마우스가 있고, 해당 컴퓨터에 PS/2 포트가 있다면 조금은 수월하게 설치가 가능할수도 있으나?
금방 멘붕의 사태를 맞이 하게된다.
boot.wim 파일과 Install.wim 파일에 xhci 드라이버를 통합해서 설치하는 방법이 있다.
DISM GUI 프로그램을 이용해서 드라이버를 통합해서 사용이 가능하다.
※ 32Bit & 64Bit 드라이버를 같이 넣어줘야 합니다. 64Bit 라고 64Bit만 추가하면 윈도우7 설치 때 USB 인식 안됩니다.
댓글목록1
hyun2님의 댓글
- C:\test 폴더를 만들고 boot.wim과 install.wim 파일 복사
- C:\111 폴더를 생성(이미지를 마운트 할 폴더)
Dism /Mount-Image /ImageFile:C:\test\boot.wim /index:1 /MountDir:C:\111
Dism /Image:C:\111 /Add-Driver /Driver:c:\test\usb /Recurse /ForceUnsigned
Dism /Unmount-Image /MountDir:C:\111 /Commit
Dism /Mount-Image /ImageFile:C:\test\boot.wim /index:2 /MountDir:C:\111
Dism /Image:C:\111 /Add-Driver /Driver:c:\test\usb /Recurse /ForceUnsigned
Dism /Unmount-Image /MountDir:C:\111 /Commit
dism /get-wiminfo /wimfile:c:\test\install.wim
dism /export-image /sourceimagefile:c:\test\install.wim /sourceindex:3 /destinationimagefile:c:\test\winstall_pro.wim /compress:max
Dism /Mount-Image /ImageFile:C:\test\winstall_pro.wim /index:1 /MountDir:C:\111
Dism /Image:C:\111 /Add-Driver /Driver:c:\test\usb /Recurse /ForceUnsigned
Dism /Unmount-Image /MountDir:C:\111 /Commit