Updated 2.1 Multiple Profiles (markdown)

Thorin-Oakenpants 2017-03-27 06:52:31 +13:00
parent ffb93af5a9
commit b75f83580b

@ -32,7 +32,52 @@ Here is a typical Firefox Portable profile layout
-plugins -plugins
-profile -profile
-settings -settings
FirefoxPortableSettings.ini
-Other -Other
FirefoxPortable.exe FirefoxPortable.exe
FirefoxPortable.ini FirefoxPortable.ini
``` ```
Here is a multiple profile layout
```
-FirefoxPortable
-App
-Data
-default
-plugins
-profile
-settings
FirefoxPortableSettings.ini
-hardened
-plugins
-profile
-settings
FirefoxPortableSettings.ini
-relaxed
-plugins
-profile
-settings
FirefoxPortableSettings.ini
-Other
FirefoxPortable.exe
FirefoxPortable.ini
FirefoxPortableDefault.ini
FirefoxPortableHardened.ini
FirefoxPortableRelaxed.ini
```
Where for each FirefoxPortableSettings.ini you need to specify the profile folder: eg here is the `relaxed` one
```
[FirefoxPortableSettings]
LastProfileDirectory=D:\Portable\FirefoxPortable\Data\relaxed\profile
SubmitCrashReport=0
```
and for each ini in the root folder you need to add the following directories: eg here is the `relaxed` one
```
ProfileDirectory=Data\relaxed\profile
SettingsDirectory=Data\relaxed\settings
```
To launch a profile, you use a bat file to replace `FirefoxPortable.ini` with the profile one of your choice. More to come