Showing results for CIM - Scripting Blog [archived]

Jan 15, 2016
0
0

Working with Windows Startup Processes and PowerShell

Doctor Scripto Doctor Scripto

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 the ...

Scripting Guy!Windows PowerShellWMI
Apr 17, 2015
0
0

PowerTip: Use PowerShell to Remove All CIM Sessions

Doctor Scripto Doctor Scripto

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-...

Scripting Guy!Windows PowerShellscripting techniques
Apr 17, 2015
0
0

Combine PowerShell Remoting and CIM

Doctor Scripto Doctor Scripto

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 was ...

Scripting Guy!Windows PowerShellscripting techniques
Apr 16, 2015
0
0

PowerTip: Find WMI Parent Class with PowerShell

Doctor Scripto Doctor Scripto

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...

Scripting Guy!Windows PowerShellscripting techniques
Apr 16, 2015
0
0

Look at Schema of WMI Class with PowerShell

Doctor Scripto Doctor Scripto

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 example, ...

Scripting Guy!Windows PowerShellscripting techniques

Feedback