Author: Matt Hansen

https://www.linkedin.com/in/matthansen0/
Networking System Center Virtualization Windows Windows Server

Server 2012 R2 “does not have a network adapter available to create a virtual switch” when configuring VDI

Reading Time: 2 minutesI recently ran into this issue when doing an all-in-one VDI install, on top of a server that had been used for other things in the past. The “quick start” VDI option is supposed to essentially do everything for you, but I ran into this issue. “The Server does not have a network adapter available […]

Matt Hansen 
System Center

SCCM Collection Query for all Workgroup Machines

Reading Time: < 1 minuteNothing too special about this post, just a query statement. Use this query in an SCCM collection and it will give you all WORKGROUP machines.   select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System where SMS_R_System.ResourceDomainORWorkgroup = “WORKGROUP”   There ya go! Hope I’ve made your day, at least a little bit easier.

Matt Hansen 
SQL System Center

No email option in SCOM 2012 report subscription

Reading Time: 2 minutesSo this is the issue — you’re going to subscribe to a report in SCOM and the only options are “Windows File Share” and “Null Delivery Provider”.   Well that’s a problem…we want these reports emailed. This error typically occurs when a SQL Migration is done, the reporting role is migrated, or on new installs. […]

Matt Hansen 
Virtualization VMWare

vSphere 5.5 Client Download

Reading Time: < 1 minuteI had to find the vSphere 5.5 client today and I have to say — it wasn’t very easy. In light of that, I’ll just leave the links here for everyone.   Download vSphere Client 5.5 Update 2: VMware-viclient-all-5.5.0-1993072.exe Download vSphere Client 5.5 Update 1b: VMware-viclient-all-5.5.0-1880841.exe Download vSphere Client 5.5 Update 1: VMware-viclient-all-5.5.0-1618071.exe Download vSphere Client 5.5: VMware-viclient-all-5.5.0-1281650.exe

Matt Hansen 
Misc. Scripting Windows Server

Powershell Script to Test SMTP

Reading Time: < 1 minuteThis one is going to be short and sweet, I’ve been testing SMTP with and without encryption and wanted a good script for that. Here are the lines that you’ll want to look at configuring: Line 5: “$smtpServer =”InsertYourSmtpServerHere” Line 12: Change the $false value to $true if you want to encrypt your SMTP with […]

Matt Hansen 
Networking

Wireshark not equal to filter

Reading Time: < 1 minuteI came across this today and thought I’d share this helpful little wireshark capture filter. Based on wireshark’s documentation if you use “ip.addr != 10.10.10.10” that should show you everything except for packets with the IP addrress 10.10.10.10. The problem is … it doesn’t work. It turns yellow like this, and doesn’t filter that IP. […]

Matt Hansen 
System Center Windows Windows Server

SCCM 2012 “Perform site maintenance or reset this site” Greyed Out / Unavailable

Reading Time: 2 minutesAs I went to upgrade an evaluation version of System Center Configuration Manager 2012 to a full version, I noticed unlike Operations Manager — you have to do this through the setup/install interface. Upon first search people were saying just run the setup again and choose “Perform site maintenance or reset the site”, though it […]

Matt Hansen