Skip to content

Instantly share code, notes, and snippets.

@ciphertxt
Created July 13, 2022 18:42
Show Gist options
  • Save ciphertxt/bf17716b2ca3c391a998f206abb9f08e to your computer and use it in GitHub Desktop.
Save ciphertxt/bf17716b2ca3c391a998f206abb9f08e to your computer and use it in GitHub Desktop.
Opens a specific Microsoft Edge profile by name on macOS
# Navigate to the profiles directory
cd ~/Library/Application\ Support/Microsoft\ Edge
# List out the profile directories. Note that the directory name is what is used in the launch command, *not* necessarily the friendly name of the profile you see in Microsoft Edge.app
find ./ -type f -name Preferences
# Let's say "Profile 1" is one of our directories
"/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge" --profile-directory="Profile 1"
@marcgarciamarti
Copy link

@ciphertxt awesome contribution!

One question: is it possible to use this to somehow ensure that when running a PowerShell script on MacOS, the interactive session prompting for authentication is opened on Edge rather than on the default browser?

@tastapod
Copy link

tastapod commented Aug 5, 2024

Fun fact: if you enter a nonexistent profile or mistype the profile directory, Edge creates a brand new profile in that directory. No I did not intend to find this out thank you for asking.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment