Summary: Ed Wilson, Microsoft Scripting Guy, talks about using Windows PowerShell to examine startup processes in Windows 10.
Microsoft Scripting Guy, Ed Wilson, is here. This morning I am playing with the Xbox One Smart Glass app on Windows 10. I have used the app since it was in beta, and I just got my Xbox One. But I have started using...
Summary: Learn how to use Windows PowerShell to remove all CIM sessions.
How can I use Windows PowerShell to delete all the CIM sessions I have created?
Use the Get-CIMSession cmdlet to retrieve all CIM sessions, and pipe the results to the Remove-CIMSession cmdlet:
Get-...
Summary: Microsoft Scripting Guy, Ed Wilson, talks about combining Windows PowerShell remoting and CIM.
Microsoft Scripting Guy, Ed Wilson, is here. One of the cool things about Windows PowerShell is remoting. It is not a new feature. In fact, it was introduced in Windows PowerShell 2.0—a time that seems like eons ago. Really. That ...
Summary: Use Windows PowerShell to easily find a WMI parent class.
How can I use Windows PowerShell to find what parent class a particular WMI class derives from?
Use the Get-CimClass cmdlet, and select the CimSuperClassName property, for example:
(Get-Cimclass win32_bios).CimSuperClassName...
Summary: Microsoft Scripting Guy, Ed Wilson, talks about using Windows PowerShell to look at the schema of a WMI class.
Microsoft Scripting Guy, Ed Wilson, is here. One of the cool things about WMI is that it is largely self-describing. This means that I can use WMI and look at WMI. With the CIM cmdlets, this goes even a step further. For ...