Skip to content

Instantly share code, notes, and snippets.

View amitxv's full-sized avatar

AMIT amitxv

  • England
View GitHub Profile
@amitxv
amitxv / registry.reg
Last active March 11, 2024 13:44
Registry keys I personally apply on all my systems to clean up the interface and make the Windows experience less frustrating
Windows Registry Editor Version 5.00
; remove pin to quick access in context menu
[-HKEY_CLASSES_ROOT\Folder\shell\pintohome]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\pintohome]
; hide frequent folders in quick access
; hide recent folders in quick access
@echo off
DISM > nul 2>&1 || echo error: administrator privileges required >&2 && exit /b 1
where xperf.exe > nul 2>&1
if not %errorlevel% == 0 (
echo error: xperf not found in path. install "Windows Performance Toolkit" in the ADK from the link below >&2
echo https://learn.microsoft.com/en-us/windows-hardware/get-started/adk-install
exit /b 1
)
@amitxv
amitxv / XHCI-IMOD-Interval.ps1
Last active April 23, 2024 14:04
Configure the IMOD Interval for XHCI controllers with RWEverything
param(
[switch]$verbose
)
# The variables starting with $GLOBAL store values that should be applied to all XHCI controllers by default.
# To override this default value on a per-controller basis, specify the DEV_XXXX hardware ID value for the XHCI controller along with its data
# See the example below.
#
# $globalInterval = 0x0
# $globalHCSPARAMSOffset = 0x4
@amitxv
amitxv / README.md
Last active March 29, 2024 16:54
Steam -no-browser after patch

Steam -no-browser after patch (Working June 2023)

  • Disregard the original steam shortcut and only use the batch scripts below to launch steam

  • There is a slight CPU utilization penalty which can be circumvented by suspending the problematic thread

steam-no-browser.bat: