This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $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 |