Skip to content

Instantly share code, notes, and snippets.

@BananaAcid
Last active July 13, 2024 07:50
Show Gist options
  • Save BananaAcid/4f853911351dddd341383eea7b0ec08d to your computer and use it in GitHub Desktop.
Save BananaAcid/4f853911351dddd341383eea7b0ec08d to your computer and use it in GitHub Desktop.
quickly uninstall all unity installations / WIN
ls "C:\Program Files\Unity*\Editor\Uninstall.exe" | % fullname |% { &$_ /S /allusers _="$_" }
# just reinstall the one you need.
# /S is silent
# /allusers make sure it is really uninstalled, and its icon as well for all users
# _ to not unpack the installer or something, at least the uninstall is speed up
# ref: https://nsis-dev.github.io/NSIS-Forums/html/t-66750.html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment