Use Microsoft Teams like a pro with these keyboard shortcuts Open Search: Command + E on Mac or Ctrl + E on Windows keyboard shortcut to open the search menu. Start New Chat: Command + N on Mac or Ctrl + N on Windows keyboard shortcut to start a new chat. Navigation in Sidebar: Command + 1 on Mac or Ctrl + 1 on Windows to go to the Activity menu Command + 2 on Mac or Ctrl + 2 on Windows to go to Chat menu Command + 3 on Mac or Ctrl + 3 on Windows to go to Teams menu Command + 4 on Mac or Ctrl + 4 on Windows to go to Calls menu Command + 5 on Mac or Ctrl + 5 on Windows to go to the File section, which displays all the files shared in the service Attach a file: Command + O on Mac or Ctrl + O on Windows keyboard shortcut to open the menu to attach a file in channels or separate chats. Start Audio/Video Call: To make an audio call, Ctrl + Shift + C on Windows or Command + Shift + C on Mac keyboard shortcut. For video calls, Ctrl + Sh...
How to create every New Folder with name as current date-time in windows ? Every time we create a folder in windows, it's default name is New Folder. But there is a simple trick by which you can generate every new folder, with a customized name of your choice. Let's say you want to create every new folder with name as date-time of creation. So here is what you need to do. Just open notepad or notepad++ Copy and past below line: MD %date:~10%-%date:~4,2%-%date:~7,2%_%time:~0,2%%time:~3,2% and save this file with any name, but make sure to save with .bat extension. For example: ploymate.bat Now, whenever you double click on this bat file it will create a folder with name as your current date-time at the location of this file. Easy !! Now, you can further customize the folder name. Say, if you don't want the time but you want to add some prefix. You can put something like following: MD PloyMate_%date:~10%-%date:~4,2%-%date:~7,2% Putting above line in .bat file will create fo...