Skip to content

Instantly share code, notes, and snippets.

@sh770
sh770 / open-cmd-here-admin.bat
Created July 14, 2025 19:37 — forked from jordanbtucker/open-cmd-here-admin.bat
Add an "Open command window here (Admin)" context menu to folders
@echo off
net session > nul 2>&1
if /i not %errorlevel%==0 (
echo You must run this from an elevated prompt.
goto:eof
)
call :setreg "HKCR\Directory\shell\runas"
call :setreg "HKCR\Directory\Background\shell\runas"
@sh770
sh770 / ROADMAP.md
Created April 28, 2025 12:30 — forked from eladcandroid/ROADMAP.md
ROADMAP.md

Getting Started

Description

Model Context Protocol (MCP) is a standardized protocol for connecting AI agents to various external tools and data sources. Imagine it as a USB-C interface - but for AI applications.

Just like USB-C simplifies the way different devices connect to a computer, MCP simplifies the way AI models interact with data, tools, and services.

MCP Diagrams

https://www.claudemcp.com/images/blog/what-is-mcp.png

@sh770
sh770 / README.md
Created November 28, 2024 18:31 — forked from asheroto/README.md
Bypass Windows 11 Upgrade Assistant / PC Health Check / TPM and CPU Settings. Ignore PC Health Check results.

Bypass Windows 11 Upgrade Assistant / PC Health Check / TPM and CPU Settings

To bypass the Windows 11 Upgrade Assistant and avoid the TPM and CPU requirement checks, you can modify specific registry values to trick the system into thinking your computer meets the necessary requirements. This method addresses common error messages, such as:

  • This PC doesn't currently meet Windows 11 system requirements.
  • TPM 2.0 must be supported and enabled on this PC.
  • The processor isn't currently supported for Windows 11.

The Upgrade Assistant checks the following registry key to determine eligibility:

@sh770
sh770 / 1-Windows-Setup-TPM-Bypass-Internet-Bypass.md
Created November 28, 2024 18:23 — forked from asheroto/1-Windows-Setup-TPM-Bypass-Internet-Bypass.md
Windows setup answer file working on Windows 11. Skips OOBE (EULA, networking) and pretty much everything else during normal setup.

Windows 10/11 Setup Answer File + TPM Bypass + CPU requirement + storage requirement + Internet requirement bypass + disable BitLocker automatic encryption

This is a Windows setup answer file working on Windows 10 and 11.

What it does:

  • Skips OOBE (EULA, networking) and pretty much everything else during normal setup
  • Sets Keyboard + Language to English (US)
  • Set timezone to Central Standard Time
  • Creates user "User" with password of "password"
@sh770
sh770 / Win_Server_2022_Evaluation_to_full_version.md
Created October 22, 2024 09:55 — forked from nosmall/Win_Server_2022_Evaluation_to_full_version.md
Upgrade Windows Server 2022 Evaluation (Eval) to Full Version Standard or Datacenter
@sh770
sh770 / Open command window here as administrator.reg
Created July 4, 2024 15:32 — forked from h4ssi/Open command window here as administrator.reg
reg file to add "Open command window here as administrator" option in shift+rightclick explorer context menu
Windows Registry Editor Version 5.00
; heavily based on http://superuser.com/a/374396/589519
[-HKEY_CLASSES_ROOT\Directory\shell\runas]
[HKEY_CLASSES_ROOT\Directory\shell\runas]
@="Open command window here as administrator"
"HasLUAShield"=""
"Extended"=""
@sh770
sh770 / visualstudio_contextmenu.md
Created March 28, 2024 23:30 — forked from en0ndev/visualstudio_contextmenu.md
REMOVE "OPEN IN VISUAL STUDIO" IN THE CONTEXT MENU

How to Remove "Open in Visual Studio" in the Context Menu

Also you can watch the video.
https://www.youtube.com/watch?v=8S7s-p_enSY


STEP 1

  • Press Win+S keys, and search regedit then open Regedit (Registry Editor).

STEP 2

@sh770
sh770 / clean_code.md
Created December 31, 2023 17:40 — forked from wojteklu/clean_code.md
Summary of 'Clean code' by Robert C. Martin

Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.


General rules

  1. Follow standard conventions.
  2. Keep it simple stupid. Simpler is always better. Reduce complexity as much as possible.
  3. Boy scout rule. Leave the campground cleaner than you found it.
  4. Always find root cause. Always look for the root cause of a problem.

Design rules