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
| # bootstrap_fresh_pc.ps1 | |
| # | |
| # One-paste bootstrap for a TOTALLY COLD Windows 10/11 PC. Takes a box with | |
| # no git, no Python, no toolbox checkout, and gets it to a working | |
| # VideoToolbox install in ~15 minutes (mostly unattended download). | |
| # | |
| # Usage from cmd (one line): | |
| # PowerShell -NoProfile -ExecutionPolicy Bypass -Command "irm https://gist.githubusercontent.com/rickenrico-code/<gist-id>/raw/bootstrap_fresh_pc.ps1 | iex" | |
| # | |
| # Steps performed: |
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
| # fix_store_python.ps1 | |
| # | |
| # One-shot recovery script for a Windows PC where VideoToolbox got stuck | |
| # pointed at the Microsoft Store sandboxed Python and FaceFusion can't see | |
| # pip-installed packages. | |
| # | |
| # Usage from cmd: PowerShell -ExecutionPolicy Bypass -File fix_store_python.ps1 | |
| # Or via the .cmd wrapper: fix_store_python.cmd (just double-click) | |
| # | |
| # What it does (all idempotent): |