Additional chat-related features and issues within Microsoft Teams for business
It's done :) Thank you so much for the update! It's only been like 3+ years :D We are very grateful in my company!
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I want to triple-click a message, copy it to the clipboard, then paste it in whichever application, and I don't want to see the header (time and sender information).
Yes, it is possible to carefully select parts of a message, and make sure you don't snag the beginning or end of the message so you don't "grab" the header. This is not what I'm looking for. I want a one-click-solution.
I found this post dating from 2013, about Skype/Lync. I'm looking for the same thing in Teams.
Thank you
Additional chat-related features and issues within Microsoft Teams for business
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
It's done :) Thank you so much for the update! It's only been like 3+ years :D We are very grateful in my company!
Yes, that is one method of doing it. The goal I'm always trying to reach is a "one-click-done" solution. There are just too many steps involved to achieve the intended goal, for me personally.
Best solution I have to this is to:
CTRL+A to select the whole message and then click Shift+Left arrow and then CTRL+C
This should select the entire message and none of the additional info aka the time and sender information.
Wish we could just toggle that feature off but this seems like a pretty quick workaround for the issue.
That's very cool. I also use AutoHotkey. My "Tilt-Meter" reached its peak last week and wrote a different Script that accomplishes something similar. I hadn't thought of removing the last Character from the Clipboard. I thought this was a really interesting take. My version checks to see whether you're using Teams (similar to the "#IfWinActive, ahk_exe Teams.exe") and checks to see if the first character in the Clipboard is "[".
$^c:: {Send, ^cWinGet, PName, ProcessName, A
; Copy from Microsoft Teams 🡲 Remove HeaderIf (PName == "Teams.exe"){; Retrieve the First Character in the ClipboardStringLeft, FirstChar, Clipboard, 1
; If the First Character is [, Remove the HeaderIf (FirstChar == "["){ ; Find the 2nd Carriage Return in the Clipboard and Store it's position in SecondRetCar
StringGetPos, SecondRetCar, Clipboard, `n, L2 ; Retrieve the Full Length of Characters in the ClipboardTeamsMsgLen := StrLen(Clipboard)
; Delete the First Two Lines in the Clipboard, plus one character (-1), and store the Result in TeamsMsg StringRight, TeamsMsg, Clipboard, TeamsMsgLen - SecondRetCar - 1
; Put the Result back into the ClipboardClipboard = %TeamsMsg%
Return}}}
Limitations with this Script are:
How to implement it?