Windows Store weird settings.

Discussion in 'Windows 10' started by Dark Vador, Dec 21, 2023.

  1. Dark Vador

    Dark Vador X Æ A-12

    Feb 2, 2011
    4,616
    6,800
    150
    someone asked here how to turn off autoplay in-store.
    so my best turn was ... this s**t script.
    the problem? 'LocalState' value is changed every time
    it has some binary encoded value, that keeps changing

    Code:
    cls
    taskkill /f /im WinStore.App.exe
    reg Load HKLM\STORE "%USERPROFILE%\AppData\Local\Packages\Microsoft.WindowsStore_8wekyb3d8bbwe\Settings\settings.dat"
    reg delete "HKLM\STORE\LocalState" /f /v VideoAutoplay
    rem reg add "HKLM\STORE\LocalState" /f /v VideoAutoplay /t REG_BINARY /d ????????
    reg Unload HKLM\STORE
    echo.Done
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. 12 lb Turkey

    12 lb Turkey MDL Member

    Nov 24, 2022
    133
    82
    10
    LocalState\VIdeoAutoPlay is DWORD 0 or 1
     
  3. Dark Vador

    Dark Vador X Æ A-12

    Feb 2, 2011
    4,616
    6,800
    150
    It's binary data. But I can give it a try.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...