Skip to content

Instantly share code, notes, and snippets.

@Orangera1n
Orangera1n / Windows build repo.md
Last active April 26, 2025 11:47
Orangera1n's Windows Build Repo

Notice:

This project is being formally deprecated (informally, it was a while ago) as of today due to various factors:

  • builds being corrupted, likely due to rclone vfs cache mounts messing with them, and due to the nature of onedrive, there being no way to collect hashes in bulk without ugly hacks
  • me being busy and lack of time to work on this often
  • onedrive being a pain to download from
  • having to split shit accorss many accounts, making management painful
  • less control
  • me getting a new ISP thats fast enough for hosting this on a proper server (with dedup) (about that: join here for updates: https://discord.gg/rFNeu7ZyQ2)
@ADeltaX
ADeltaX / MagicUnlock.reg
Created June 11, 2021 02:55
wincap? UWP? Yes.
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SecurityManager]
"InternalDevUnlock"=dword:00000001
@Empyreal96
Empyreal96 / Windows10Toolbox.md
Last active May 9, 2020 00:42
Main Info Page for Windows 10 Toolbox Batch

Windows 10 Toolkit

ToolScreen

Windows-Toolkit.cmd (Current Project) - An ever-growing toolkit to modify many aspects of Windows.

Supported Versions = Windows 10 64/32 Bit and ARM64, I use on Pro 64bit+ARM64 and Home 32bit+ARM64.

Any Risks? = There will always be risk when modifying parts of Windows, make a Restore Point beforehand if worried.

@BelleNottelling
BelleNottelling / w10onARM_Setup_batch.bat
Last active March 10, 2025 00:32
w10onARM Setup batch
@echo off
Title w10onARM Setup batch
echo Blocking junk apps & echo.
reg load HKLM\DEFAULT c:\users\default\ntuser.dat
reg add "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v PreInstalledAppsEnabled /t REG_DWORD /d 0 /f
reg add "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v OemPreInstalledAppsEnabled /t REG_DWORD /d 0 /f
reg unload HKLM\DEFAULT
echo Removing useless windows components & echo.
@beeyev
beeyev / tweaks-win10.reg
Last active June 28, 2023 12:31
Windows 10 must have registry tweaks 2018
Windows Registry Editor Version 5.00
;Remove 'Give access to' Context Menu in Windows 10
[-HKEY_CLASSES_ROOT\*\shellex\ContextMenuHandlers\Sharing]
[-HKEY_CLASSES_ROOT\*\shellex\ContextMenuHandlers\ModernSharing]
[-HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\Sharing]
[-HKEY_CLASSES_ROOT\Directory\shellex\ContextMenuHandlers\Sharing]
[-HKEY_CLASSES_ROOT\Directory\shellex\CopyHookHandlers\Sharing]
[-HKEY_CLASSES_ROOT\Directory\shellex\PropertySheetHandlers\Sharing]
[-HKEY_CLASSES_ROOT\Drive\shellex\ContextMenuHandlers\Sharing]
@vincepare
vincepare / registryDump.bat
Created December 11, 2015 00:09
Automatic Windows registry dump batch script - export multiple reg keys at once (useful for backups)
:: Windows registry dump batch script
:: Copyright (c) 2015 Vincent Paré
:: Licensed under the Apache 2.0 license : http://opensource.org/licenses/Apache-2.0
@echo off
pushd %~dp0
echo Export directory : %CD%
:: Get current timestamp
set hour=%time:~0,2%
@jeanlescure
jeanlescure / README.md
Last active November 24, 2024 21:24
Ubuntu/Debian Offline Repository Creation

Ubuntu/Debian Offline Repository Creation Gist

When I googled how to create my own offline repository of packages for use in an offline Ubuntu/Debian machine, the results were disheartening and the steps to be taken scattered all over the place.

The files within this gist will allow you to:

  • Download specific apt-get packages... with dependencies included!
  • Create a Packages.gz file so that you can add the repository folder you create to the target machine's /etc/apt/sources.list file.

Before using