PVaughan Posted October 11, 2021 Posted October 11, 2021 We turned on Third-Party Patching with pulseway last week in our organization. It was immediately clear we had a problem as org wide the ability to join meetings via links was broken. the only way to join meetings now was from the teams app built in calendar. I dug into the issue and found that the installation location changed from the users directory to the program files directory, however it looks to have failed to update a registry key for the users url calls specifically URL:msteams. The field that needs to be update on each users machine to correct this was to point the default entry at Computer\HKEY_CURRENT_USER\SOFTWARE\Classes\TeamsURL\shell\open\command to the correct address instead of pointing to the users directory. we wrote a quick .bat file to fix it and we pushed this out via pulseway. so this is more of an fyi if anyone else is having similar issues.  ::fix broken teams after auto update ::/ve denotes default entry /t Specifies the type of registry entries /d Specifies the data for the new entry /f Adds or deletes registry content without prompting for confirmation. for /F  "delims=\ tokens=1,*" %%t in ('reg query HKU') do REG ADD "HKU\%%u\SOFTWARE\Classes\TeamsURL\shell\open\command" /f /ve /t REG_SZ /d "\"C:\Program Files (x86)\Microsoft\Teams\current\Teams.exe\" \"%%1\"" Jamie Taylor 1
Jamie Taylor Posted October 11, 2021 Posted October 11, 2021 Thanks for sharing the details Vaughan, appreciate it!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now