Showing archive results for 2014

Jan 30, 2014
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Retrieve CIM Methods

Doctor Scripto

Summary: Learn how to use Windows PowerShell to retrieve CIM methods.  How can I use Windows PowerShell to dynamically obtain a list of CIM methods?  Use the following script: Clear-Host;   $ClassList = Get-CimClass;  foreach ($CimClass in $ClassList) {    foreach ($CimMethod in $CimClass.CimClassMethods) { &...

Scripting Guy!Windows PowerShellPowerTip
Jan 30, 2014
Post comments count0
Post likes count0

Invoking CIM Methods with PowerShell

Doctor Scripto

Summary: Guest blogger, Trevor Sullivan, talks about invoking CIM methods via Windows PowerShell. Microsoft Scripting Guy, Ed Wilson, is here. Today we have another guest post from Trevor Sullivan. Trevor is an Honorary Scripting Guy, and a recognized Microsoft Community Contributor (MCC). To see more of Trevor’s guest posts, see these Hey, Script...

Scripting Guy!Windows PowerShellscripting techniques
Jan 29, 2014
Post comments count0
Post likes count0

PowerTip: Copy Information to the Clipboard with PowerShell

Doctor Scripto

Summary: Learn how to easily copy information to the clipboard by using Windows PowerShell.  How can I use Windows PowerShell to copy WMI information to the Windows Clipboard           so I can use it in another application?  Use the external clip.exe utility to copy Windows PowerShell pipeline output to your Wind...

Scripting Guy!Windows PowerShellPowerTip
Jan 29, 2014
Post comments count0
Post likes count0

Use PowerShell to Manipulate Information with CIM

Doctor Scripto

Summary: Guest blogger, Trevor Sullivan, talks about using Windows PowerShell and CIM to manipulate information. Microsoft Scripting Guy, Ed Wilson, is here. Today we have a guest post from Trevor Sullivan. Trevor is an Honorary Scripting Guy, and a recognized Microsoft Community Contributor (MCC). To see more of Trevor’s guest posts, see these He...

Scripting Guy!scripting techniquesguest blogger
Jan 28, 2014
Post comments count0
Post likes count0

PowerTip: Find Commands in Specific PowerShell Modules

Doctor Scripto

Summary:  Learn how to find commands in specific Windows PowerShell modules.  How can I find all the commands in the CIMCmdlets Windows PowerShell module?  Use the Get-Command cmdlet and specify the module name, for example: Get-Command -Module CIMCmdlets

Scripting Guy!Windows PowerShellPowerTip