Windows Store weird settings.

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

  1. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    3,951
    5,604
    120
    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
    115
    63
    10
    LocalState\VIdeoAutoPlay is DWORD 0 or 1
     
  3. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    3,951
    5,604
    120
    It's binary data. But I can give it a try.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...