"appraiserres.dll" - Only to collect telemetry data and check compatibility ?

Discussion in 'Windows 10' started by itsmemario1, Jun 30, 2021.

  1. itsmemario1

    itsmemario1 MDL Addicted

    Sep 10, 2012
    630
    120
    30
  2. mdl052020

    mdl052020 MDL Member

    May 31, 2020
    1,048
    1,142
    60
    Awesome Post . Thanks a lot.
     
  3. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    35,567
    59,630
    450
    Sources files are not used by a clean install, except: install.wim/esd, boot.wim. lang.ini, setup.exe and the pid.txt or ei.cfg.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    35,567
    59,630
    450
    Use the tool which does it all for you?
    Win 11 Boot And Upgrade FiX KiT v1.5 will be updated to v1.6 soon.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. itsmemario1

    itsmemario1 MDL Addicted

    Sep 10, 2012
    630
    120
    30
    Hehe of course I used "Win 11 Boot and Upgrade FiX KiT v1.5" ='D

    But Id like to dig deeper a bit. I want to know more about appraiserres.dll and everythign it is involved into.
    Also, where would be the origin of the idea replacing it ? I found other sites that claim such trick was used before and that using a newer appraiserres.dll on this Windows 11 might work too.

    I bet you tested that already ?
     
  6. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    35,567
    59,630
    450
    Didn't work for me, and what does it matter from which build you use the dll, as long as it works it's fine.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. okatomy

    okatomy MDL Novice

    Aug 14, 2009
    32
    12
    0
    Appraiserres.dll only need to be touched for inplace upgrade.
    Deleting it worked for me
     
  8. DrStrange

    DrStrange MDL Novice

    Nov 9, 2008
    7
    1
    0
    #8 DrStrange, Jul 1, 2021
    Last edited: Jul 1, 2021
    Well, appraiserres.dll is in the sources folder, so some source files must be used in a clean install. If deleting it also works as stated in the post above, is there another file that the install uses other than appraiserres.dll to check the system is suitable to install Windows 11 on?

    Anyway, the "putting the Windows 11 install.wim in a Windows 10 iso" trick worked for me on a Haswell CPU which didn't have TPM.
     
  9. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    35,567
    59,630
    450
    appraiserres.dll fix does not help for installs from boot.

    These are the boot.wim index 2 fixes:
    Code:
    Dism /mount-wim /wimfile:"WORK\sources\boot.wim" /index:2 /mountdir:"%SystemDrive%\Mount_Temp"
    Reg.exe load HKLM\MDL_Test "%SystemDrive%\Mount_Temp"\windows\system32\config\SYSTEM
    Reg.exe add "HKLM\MDL_Test\Setup\LabConfig" /v "BypassTPMCheck" /t REG_DWORD /d "1" /f
    Reg.exe add "HKLM\MDL_Test\Setup\LabConfig" /v "BypassSecureBootCheck" /t REG_DWORD /d "1" /f
    Reg.exe add "HKLM\MDL_Test\Setup\LabConfig" /v "BypassRAMCheck" /t REG_DWORD /d "1" /f
    Reg.exe unload HKLM\MDL_Test
    DISM /Image:"%SystemDrive%\Mount_Temp" /Cleanup-Image /StartComponentCleanup /ResetBase
    DISM /Unmount-Image /MountDir:"%SystemDrive%\Mount_Temp" /Commit
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...