Simple like that: Get-Mailbox -resultsize unlimited | Where {$_.Emailaddresses -Match “@my_domain.com”} | Select Name, Emailaddresses If you sure that it is primary smtp address you can write like Get-Mailbox -resultsize unlimited | Where {$_.Emailaddresses -Match “@my_domain.com”} | select name, PrimarySmtpAddress
Articles by phi3nix
If you use QNAP which is not connected to UPS you probably see error “File System is not clean” very often. This is my way how to check and clean files system fast on QNAP. Step 1: You have to connect to QNAP via SSH. Step 2: Copy and…
Brother MFC printers default passwords. For an Administrator account: user: admin password: access For an User account: user: user password: access
Sometimes Windows has problem with activation. We can easy solve this problem from command line. Activation Windows from Command Line: Find CMD and “Run as administrator” Type: slmgr -ipk your-mak-key-here If everything went well you will see this windows Type: slmgr -ato Deactivation Windows from Command Line: Find CMD and…
Problem Stuck Job Print. Probably everyone who has printer experienced problem with stuck documents in queue. This is my solution how to fix this problem. Solution1: Open Services. Find and stop Service Print Spooler. Open RUN and past %windir%\System32\spool\PRINTERS Delete all files in this folder. Open Services and start Service…