Happy holidays everyone, I hope the new year will bring you the
Related Posts

How to get rules for all users in Microsoft 365
Posted on 07 March 2023Here is a neat script to get rules for all your users. It is handy if you are checking for any sig $Mailboxes = Get-Mailbox -ResultSize unlimited foreach ($Mailbox in $Mailboxes){ Get-InboxRule -mailbox $Mailbox.Name | fl Name,Description > ...

Getting list of printers from command line
Posted on 19 August 2022powershell 'get-printer | format-table' Run this via cmd line… Alternatively, run it in powershell as get-printer | format-table Sample output looks like: Name ComputerName Type DriverName PortName Shared Publishe d ---- ------------ ---- ---------- -------- ------ -------- OneNote for Windows 10 Local ...

Viewing and exporting Cached Credentials in Windows
Posted on 26 June 2022I always knew, you can see your cached credentials in Control Panel - Credential Manager. However, I wasn't aware you can actually export/import them. The command is: rundll32.exe keymgr.dll,KRShowKeyMgr You can simply hit Windows and R keys, ...
This site uses Akismet to reduce spam. Learn how your comment data is processed.
Leave a Reply