How to Make Windows 10 Handheld Friendly (Start Up Mod Doesn't Work on Windows 11)

Описание к видео How to Make Windows 10 Handheld Friendly (Start Up Mod Doesn't Work on Windows 11)

Timestamps:
Intro - 0:00
Handheld Companion - 0:51
Removing Windows Bloat - 3:41
Disabling the Xbox Game Bar - 3:57
Hiding Steam OS Partitions/Drives from Windows - 4:28
Optimizing Windows Sleep Mode and Fixing the Clock - 5:38
Permanently Stopping Windows From Asking for a Password - 7:40
Customizing the Login Screen to Look Like Steam OS - 8:25
Playnite - 9:02
Disabling User Account Control Settings - 13:11

Links:
Original Mod: https://playnite.link/forum/thread-96...
Handheld Companion: https://github.com/Valkirie/HandheldC...
Playnite: https://playnite.link/
Bat to EXE: https://drive.google.com/file/d/15lt9...

PowerShell Commands - Sleep Mod:
PowerCfg /SETACVALUEINDEX SCHEME_CURRENT SUB_NONE CONSOLELOCK 0
PowerCfg /SETDCVALUEINDEX SCHEME_CURRENT SUB_NONE CONSOLELOCK 0
PowerCfg -h off

PowerShell Commands - Clock Fix:
reg add "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\TimeZoneInformation" /v RealTimeIsUniversal /d 1 /t REG_DWORD /f

Script 1 (.bat file):
@echo off
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v Shell /t REG_SZ /d "explorer.exe" /f
timeout /t 1
start explorer.exe
timeout /t 1
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v Shell /t REG_SZ /d "%LOCALAPPDATA%\Playnite\Playnite.DesktopApp.exe" /f
exit

Script 2 (Playnite Auto Start) - Make sure the .exe you create is called playnite.exe and on the Desktop. Also replace "Deck" with your username for Wndows or the Windows desktop with not start:
if (-not (Get-Process "explorer" -ErrorAction SilentlyContinue)) {
Start-Process -FilePath 'C:\Users\Deck\Desktop\playnite.exe'
}

Script 3 (Removes this mod, save to .bat file and run as administrator -    • How To Remove Windows 10 Launcher Mod...  ):
@echo off
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v Shell /t REG_SZ /d "explorer.exe" /f
timeout /t 1
start explorer.exe
exit

Комментарии

Информация по комментариям в разработке