- Open Run (Winkey-R or right-click Start menu), insert
"%PROGRAMFILES%\Mozilla Firefox\firefox.exe" -p
, press OK, to start Firefox profile manager. - You may be able to run simply
firefox -p
. Guide is written to be robust for system differences. - Press "Create Profile...".
- Press "Next".
- Insert a profile name. It can contain spaces. Example: "Web App 1"
- Now don't rush. It is easy to inadvertently change the default profile.
- Press "Finish".
- Press "Exit". If you instead pressed "Start Firefox" without unchecking "Use the selected profile without asking at startup": open Firefox profile manager again (read step 1), select your desired profile (probably "default"), enable the option "Use the selected profile [...]", press "Start Firefox", continue with the step after this.
- Open Run, insert:
"%PROGRAMFILES%\Mozilla Firefox\firefox.exe" --no-remote -P "Web App 1"
- Select the location field (Ctrl-L).
Want to inject some flavor into your everyday text chat? You're in luck! Discord uses Markdown, a simple plain text formatting system that'll help you make your sentences stand out. Here's how to do it! Just add a few characters before & after your desired text to change your text! I'll show you some examples...
What this guide covers:
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
exFAT support on macOS seems to have some bugs because my external drives with exFAT formatting will randomly get corrupted.
If Disk Utility is unable to repair, consider trying this:
- In Disk Utility, ensure that the drive is not mounted, eject it if it is mounted.
- Use
diskutil list
to find the right drive id. - You want the id under the IDENTIFIER column, it should look like
disk1s1
- Run
sudo fsck_exfat -d <id from above>
. egsudo fsck_exfat -d disk1s3
-d
is debug so you'll see all your files output as they're processed.