Scripts
Scripts#
a collection of useful scripts for various tasks.
Chris Titus Tech's Windows Utility
Install Programs, Tweaks, Fixes, and Updates.
Clone entire GitHub Profile / Organization
gh repo list ORGNAMEHERE --limit 4000 | while read -r repo _; do
gh repo clone "$repo" "$repo"
done
Update Existing Repositories
gh repo list myorgname --limit 1000 | while read -r repo _; do
gh repo clone "$repo" "$repo" -- -q 2>/dev/null || (
cd "$repo"
git checkout -q main 2>/dev/null || true
git checkout -q master 2>/dev/null || true
git pull -q
)
done
WinMasterBlocker
Block All Adobe connections via Firewall.