Replies: 11 comments 23 replies
|
I do not believe the MSI (MS Installer) supports a "portable mode". It's contrary to the purpose of the installer. On the other hand, the other installers may support such a mode. |
|
We publish 7z archives, completely identical to msi, for this very purpose. Anticipating the "but what if I can't unpack 7z" argument: |
|
I don't think anybody has problems with 7z. |
|
Yes, it may serve a few purposes:
|
Actually MS considers it as multipurpose tool Using Windows Installer. If you take an app like Far2, then yes, it will be an impossible task for MSI, but Far3 itself is basically portable. Another option is to make fully portable Far3 as 7-zip archive (new archive, modification of existing one, or combo-archive). |
|
Portable mode would be very usefull ++ |
|
I totally agree, this would be great! |
|
FYI
More info: FarManager/far/Far.exe.example.ini Lines 7 to 25 in 511238c |
|
The more I think about it, the more I get convinced that the MSI installer deserves an option for portable installation. |
The ini file is user-defined. We cannot have user-defined files in the distribution. What if we keep it opt-in, but one click opt-in?
@echo off
setlocal
set INI=%~dp0far.exe.ini
if exist %INI% choice /m "%INI% already exists. Overwrite"
if errorlevel 2 exit /b 1
call :generate > %INI%
echo Done
endlocal
goto :eof
:generate
echo [General]
echo UseSystemProfiles=0 |


Uh oh!
There was an error while loading. Please reload this page.
Far installer has options to install it for the current user and for all users.
What do you think: Does it make sense to add option "Install in Portable Mode"?
It will be very convenient.
All reactions