Skip to content

Instantly share code, notes, and snippets.

View jordangomes's full-sized avatar

Jordan Gomes jordangomes

View GitHub Profile
@jordangomes
jordangomes / ISOLater.js
Created October 30, 2025 10:35
ISOLater User Script - Add back previous versions of Windows to the Windows 11 Download page
// ==UserScript==
// @name ISOLater
// @namespace https://jordangomes.com/userscripts
// @version 2025-10-30
// @description Add back previous versions of Windows to the Windows 11 Download page
// @author Jordan Gomes <dev@jordangomes.com>
// @match https://www.microsoft.com/*/software-download/windows11
// @icon https://jordangomes.com/favicon.ico
// @grant none
// ==/UserScript==
@jordangomes
jordangomes / FFMPEGInstall.ps1
Last active June 20, 2022 13:25
FFMPEG Install script
$INSTALL_URL = "https://www.gyan.dev/ffmpeg/builds/packages/ffmpeg-5.0.1-essentials_build.zip"
$ZIP_NAME = "ffmpeg-5.0.1-essentials_build"
# Clean Up Previous Install
Remove-Item "$env:temp\$ZIP_NAME" -Recurse -ErrorAction SilentlyContinue
Remove-Item "$env:LOCALAPPDATA\ffmpeg" -Recurse -ErrorAction SilentlyContinue
# Download and extract ffmpeg
Invoke-WebRequest -Uri $INSTALL_URL -OutFile "$env:temp\ffmpeg.zip"
Expand-Archive -Path "$env:temp\ffmpeg.zip" -DestinationPath $env:temp