Single user <a href=”https://teams.microsoft.com/l/chat/0/0?users=user@domain.tld”>Chat with User</a> Multitple users <a href=”https://teams.microsoft.com/l/chat/0/0?users=userA@domain.tld,userB@domain.tld”>Chat with Group</a> With Topic and Message <a href=”https://teams.microsoft.com/l/chat/0/0?users=userA@domain.tld,userB@domain.tld&topicName=This is the topic&message=This is the message”>Order more</a>
Category: Notes
Enable Num-Lock on Boot for Windows 10
I’d love for an easier way to do this, but I haven’t yet located one. Search for regedit in the Start Menu. Right click it and run it as Administrator Navigate to HKEY_USERS.DEFAULTControl PanelKeyboard Double-click InitialKeyboardIndikators and change the value to 2147483650 Restart If you know of an easier way, please let me know, thanks 🙂
Git – Pushing existing files to a new empty repository
After having created an empty github repository, run the following commands in the directory which content you wish to push. git init git add –all git commit -m “Initial Commit” git remote add origin https://url-to-repository.git git push -u origin master