What's the difference between VSCodium, VSCodiumSetup and VSCodiumUserSetup installation files? #1214
-
What's the difference between VSCodium, VSCodiumSetup and VSCodiumUserSetup installation files for Windows? For example: VSCodium-x64-1.70.2.22230.msi |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I would assume the user setup will install for the local user only, without the need for administrator privileges, whereas the none user setup will install for all users on the system, however it will require administrator privileges. The For simplicities sake, you can think of |
Beta Was this translation helpful? Give feedback.
-
Just to add the official doc: https://code.visualstudio.com/docs/setup/windows#_user-setup-versus-system-setup and (without the explicit link) the note that MS suggests to use the user setup (because of the "smoothness") |
Beta Was this translation helpful? Give feedback.
I would assume the user setup will install for the local user only, without the need for administrator privileges, whereas the none user setup will install for all users on the system, however it will require administrator privileges.
The
.msi
uses the Microsoft Windows Installer format which is included with Windows itself, you can install VSCodium as a local user or for all users, the latter of which requires administrator privileges. The Microsoft Windows Installer format theoretically is better for compatibility with past and future versions of Windows however it can limit what the developer can do during the installation process. For VSCodium it won't make a difference which installe…