KFVS12: Hackers are focusing on small colleges

For those of you who may have missed it. I was interviewed by KFVS12 yesterday. Below is a link to the story. http://www.kfvs12.com/story/30101391/researchers-hackers-are-focusing-on-small-colleges?utm_source=site&utm_medium=meganav&utm_campaign=meganav

Continue reading

Mass Delete Malicious Email in EMS

If you are an administrator of an Exchange 2010 server there may be times when your users get an email that may be malicious in nature. Here are two very useful PowerShell commands that will allow you to either log/report the users that may have received the email in question or delete it from all […]

Continue reading

List Virtual Machines in SCVMM 2012r2

Would you like to find out what VM is running on which server in your SCVMM cluster? This PowerShell script does it for you! (run it on the VMM server’s Virtual machine manager Command Shell)… Get-SCVirtualMachine | Select-Object -property HostName, Name, Description | Sort-Object -Property HostName | Export-Csv .\vm-list.csv

Continue reading