Skip to content

Instantly share code, notes, and snippets.

@cveld
Created August 9, 2021 11:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cveld/5d01286d4edf49f392697084872f67e3 to your computer and use it in GitHub Desktop.
Save cveld/5d01286d4edf49f392697084872f67e3 to your computer and use it in GitHub Desktop.
Start separate Teams desktop session
@ECHO OFF
REM Uses the file name as the profile name
SET MSTEAMS_PROFILE=%~n0
ECHO - Using profile "%MSTEAMS_PROFILE%"
SET "OLD_USERPROFILE=%USERPROFILE%"
SET "USERPROFILE=%LOCALAPPDATA%\Microsoft\Teams\CustomProfiles\%MSTEAMS_PROFILE%"
ECHO - Launching MS Teams with profile %MSTEAMS_PROFILE%
cd "%OLD_USERPROFILE%\AppData\Local\Microsoft\Teams"
"%OLD_USERPROFILE%\AppData\Local\Microsoft\Teams\Update.exe" --processStart "Teams.exe"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment