Skip to content

Instantly share code, notes, and snippets.

View Empyreal96's full-sized avatar
💤
Otherwise occupied

Empyreal96

💤
Otherwise occupied
View GitHub Profile
@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 June 13, 2022 16:35
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 March 25, 2024 19:08
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