Friday 13 May 2022

Run multiple Desktop client of Teams at the same time

 Hi All,

Today we found a new way to run multiple instances of Teams, and desktop clients simultaneously.

Copy and paste the following into a text editor (Save with any name and give extension as .CMD)


@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"


Now, double click on the saved file like Team_1.cmd 




It'll launch the desktop team client, then log in with customer or work accounts. :-) 



Cheers! 







 

Import General journal from excel in D365 F&O

 Hi Guys, Import General journal from excel in D365 F&O Code:  using System.IO; using OfficeOpenXml; using OfficeOpenXml.ExcelPackage; u...