Last active
July 13, 2024 07:50
-
-
Save BananaAcid/4f853911351dddd341383eea7b0ec08d to your computer and use it in GitHub Desktop.
quickly uninstall all unity installations / WIN
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
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