rog ally win10 설치하기

  1. 초기 OS (클라우드 리커버리 상태) 준비
  2. 드라이버 백업
    DISM /online /export-driver /destination:D:\Drivers
  3. gimagex 으로 win10 이미지 apply
  4. dism 으로 설치 경로에 드라이버 추가
    dism /Image:E: /Add-Driver /Driver:D:\Drivers /Recurse

그냥 win10 설치해서 Window Update 나 MyAsus, Armory crate 같은거로 드라이버 설치하려고 하면 안잡힘.


참고

https://www.thewindowsclub.com/export-drivers-using-dism-in-windows

https://www.tenforums.com/tutorials/95008-dism-add-remove-drivers-offline-image.html

rog ally 초기설정 및 복구

초기설정

  1. 초기 셋업시 인터넷 연결 해제하고 shift+enter oobe\bypassnro 해서 MS 로그인 강제하는 것 패스하기
  2. 위젯 지우기 powershell 에 아래 입력
    winget uninstall "Windows web experience Pack"
  3. windows update 및 update medic 서비스 실행 방지하기
    서비스 dll 실행 방지
    %windir%\system32\wuaueng.dll
    C:\Windows\System32\wuaueng.dll
    
    실행 권한 -> SYSTEM -> 읽기 및 실행 거부
    소유권 가져오기 필요
    
    서비스 비활성화
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\wuauserv
    Start(DWORD) -> 4(disabled) 로 변경
    키(wuauserv) 사용 권한-> SYSTEM -> 모든 권한 거부
    
    "메딕" 서비스 비활성화
    system32\WaaSMedicSvc.dll
    WaaSMedicAgent.exe
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WaaSMedicSvc
    반복
    
  4. update 비활성화 후 인터넷 연결
  5. 그룹 정책 복원

    FOR %F IN (“%SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientTools-Package~*.mum”) DO (DISM /Online /NoRestart /Add-Package:”%F”)
    FOR %F IN (“%SystemRoot%\servicing\Packages\Microsoft-Windows-GroupPolicy-ClientExtensions-Package~*.mum”) DO (DISM /Online /NoRestart /Add-Package:”%F”)

  6. 그룹 정책에서 “Allow edge swipe” disable 하기

    Computer Configuration\Administrative Templates\Windows Components\Edge UI

    레지스트리 수정

    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\PolicyManager\default\LockDown\AllowEdgeSwipe]
    "value"=dword:00000000
    
    [HKEY_CURRENT_USER\SOFTWARE\Policies\Microsoft\Windows\EdgeUI]
    "AllowEdgeSwipe"=-
    
    [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\EdgeUI]
    "AllowEdgeSwipe"=dword:00000000

복구

  1. 복구 시 전원버튼+볼륨 down 키로 진입
  2. 클라우드 리커버리 사용시 “서버 인증 실패” 메시지시 게스트 네트워크 또는 테더링 사용하기

https://www.elevenforum.com/t/what-is-oobe-bypassnro.5011/

https://www.technewstoday.com/windows-update-medic-service/

https://www.elevenforum.com/t/enable-or-disable-screen-edge-swipe-in-windows-11.3717/

https://www.elevenforum.com/t/uninstall-and-reinstall-widgets-in-windows-11.13723/

https://rog.asus.com/articles/guides/how-to-upgrade-the-ssd-and-reinstall-windows-on-your-rog-ally/

Cloud Recovery “Server Authentication Failed”
byu/hu_blah inROGAlly

GPT 디스크에 windows 7 설치

GPT 디스크에 windows 7 을 설치하기 위해서는 efi 부트로더로 부팅하여 설치하여야 한다.

그러나 설치 디스크를 EFI 지원되게 만들었더라도, 설치 디스크를 bios(MBR) 으로 부팅한 경우에는 efi 부트로더를 설치할 수 없고(bcdboot) 윈도우도 설치할 수 없다.

당연한 소리같지만, 보통 bios 설정에서 CSM 지원을 활성하는 경우 uefi 와 bios 중 어떤 것을 먼저 시도할 것인지 설정하게 되는데 보통 이 경우 bios first (또는 별다른 옵션 없이 bios 으로 고정) 가 선택되고 이렇게 되면 위의 시나리오가 발생한다.

이러한 경우, UEFI only 나 uefi first 을 선택하여 부팅 후 설치를 진행한다. windows 7 의 시작에는 CSM 이 필요하긴 하지만 설치 까지는 UEFI only 이어도 아마 가능할 것이다.

또한 efi 지원 설치 디스크를 작성할 때에는 rufs(https://rufus.ie/) 을 사용한다. 근데 그냥 FAT32 로 포맷하고 설치 디스크만 복사해도 될 것 같다.

 

install driver into another windows installation

https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/add-and-remove-drivers-to-an-offline-windows-image

DISM 을 이용하여 offline image 에 driver install 을 따라하되, mount-image 를 할 필요 없고 /image:<path of instance> 을 하면 된다.

예: (E:\ 에 설치되어 있는 경우)

Dism /Image:E:\ /Add-Driver /Driver:C:\drivers\mydriver.inf

DISM 을 얻으려면 Windows ADK 를 설치하라고 되어 있지만 이미 Windows 7 에는 탑재되어 있다. 아마 vista 부터 있었을 듯.