wmi
Welcome to the 'wmi' tag page at Technorati. This page features content from the farthest reaches of the Blogosphere that authors have "tagged" with 'wmi'.
Are you an expert about 'wmi'? Do you want to be the Technorati authority on 'wmi'? You can write a description that will appear right here:
Join Blogcritics!
Latest blogosphere posts tagged “wmi”
-
WMI associations through CIM cmdlets
MSMVPS.COM —
Authority: 433
The CIM cmdlets that introduced in PowerShell v3 give us a different API for working with WMI. We can still work with associations just in a slightly different way. NOTE – this done on a different machine to the previous one so the adapters are different We get the instances of a WMI class like ...2 weeks ago -
WMI associations through CIM cmdlets
Richard Siddaway's Blog —
Authority: 115
The CIM cmdlets that introduced in PowerShell v3 give us a different API for working with WMI. We can still work with associations just in a slightly different way. NOTE – this done on a different machine to the previous one so the adapters are different We get the instances of a WMI class like this ...2 weeks ago -
Associated Classes
Richard Siddaway's Blog —
Authority: 115
If I run Get-WmiObject -Class Win32_NetworkAdapter I get a list of the Network Adapters in my system plus some information about the adapter. What I don’t get is the IP addressing and other configuration information because it is stored on the Win32_NetworkAdapterConfiguration class. The key property on ...2 weeks ago -
Associated Classes
MSMVPS.COM —
Authority: 433
If I run Get-WmiObject -Class Win32_NetworkAdapter I get a list of the Network Adapters in my system plus some information about the adapter. What I don’t get is the IP addressing and other configuration information because it is stored on the Win32_NetworkAdapterConfiguration class. The key ...2 weeks ago -
Get the logged on users
MSMVPS.COM —
Authority: 433
Do you know which users are logged on to your systems? Want to find out? function get-logedonuser { param ( [string] $computername = $env:COMPUTERNAME ) Get-WmiObject -Class Win32_LogonSession -ComputerName $computername | ...2 weeks ago -
Get the logged on users
Richard Siddaway's Blog —
Authority: 115
Do you know which users are logged on to your systems? Want to find out? function get-logedonuser { param ( [string] $computername = $env:COMPUTERNAME ) Get-WmiObject -Class Win32_LogonSession -ComputerName $computername | foreach { $data = $_ $id = $data . ...2 weeks ago -
CIM sessions
MSMVPS.COM —
Authority: 433
When we last looked at the CIM cmdlets we saw that by default they use WSMAN to access remote computers but this only works if the remote computer is running PowerShell v3 with version 3.0 of the WSMAN stack. We can force the CIM cmdlets to use DCOM by configuring a CIM session. These are analogous to PSsessions we ...2 weeks ago -
CIM sessions
Richard Siddaway's Blog —
Authority: 115
When we last looked at the CIM cmdlets we saw that by default they use WSMAN to access remote computers but this only works if the remote computer is running PowerShell v3 with version 3.0 of the WSMAN stack. We can force the CIM cmdlets to use DCOM by configuring a CIM session. These are analogous to PSsessions we ...2 weeks ago -
Boot partition
MSMVPS.COM —
Authority: 433
Do you know which disk partition your system boots from? Its easy to find out function get-bootpartition { [ CmdletBinding ( ) ] param ( [ parameter ( ValueFromPipeline = $true , ValueFromPipelineByPropertyName = $true ) ] ...2 weeks ago -
Boot partition
Richard Siddaway's Blog —
Authority: 115
Do you know which disk partition your system boots from? Its easy to find out function get-bootpartition { [ CmdletBinding ( ) ] param ( [ parameter ( ValueFromPipeline = $true , ValueFromPipelineByPropertyName = $true ) ] [string] $computername = "$env:COMPUTERNAME" ) PROCESS { ...2 weeks ago -
CIM cmdlets and remote machines
Richard Siddaway's Blog —
Authority: 115
To access a remote machine using WMI we use Get-WmiObject -Class Win32_ComputerSystem -ComputerName webr201 This is replicated using the CIM cmdlets Get-CimInstance -ClassName Win32_ComputerSystem -ComputerName webr201 No lets repeat with another server Get-WmiObject -Class Win32_ComputerSystem ...2 weeks ago -
CIM cmdlets and remote machines
MSMVPS.COM —
Authority: 433
To access a remote machine using WMI we use Get-WmiObject -Class Win32_ComputerSystem -ComputerName webr201 This is replicated using the CIM cmdlets Get-CimInstance -ClassName Win32_ComputerSystem -ComputerName webr201 No lets repeat with another server Get-WmiObject -Class ...2 weeks ago -
PowerShell: Move ConfigMgr Collections
Trevor Sullivan's Tech Room —
Authority: 94
Introduction If you work with Microsoft System Center Configuration Manager (SCCM / ConfigMgr) 2007 in any capacity, you probably are familiar with the concept of "collections" and how painful they can be to work with sometimes. The ConfigMgr console does not provide any method of moving a collection from one parent ...3 weeks ago -
PowerShell: PowerEvents Module Update to 0.3 Alpha
Trevor Sullivan's Tech Room —
Authority: 94
If you haven’t already checked it out, I wrote and published a PowerShell module on CodePlex a little over a year ago. It’s called PowerEvents for Windows PowerShell, and allows you to easily work with permanent WMI (Windows Management Instrumentation) event subscriptions. Some folks may not be aware that I’ve ...3 weeks ago -
Group Policy and WMI filtering slowness.
wisefaq.com —
Authority: 99
Having spent time investigating slow network logons, I dislike using WMI for Group Policy filtering. It just adds a layer of slowness to logons. WMI filtering does has it’s place, and I do still use, and occasionally recommend it for very specific reasons. Such as when we’re piloting a new version of ...3 weeks ago -
PowerShell: Report / Check the Size of ConfigMgr Task Sequences
Trevor Sullivan's Tech Room —
Authority: 94
Introduction In Microsoft System Center Configuration Manager 2007 operating system deployment (OSD), there is a limitation of 4MB for task sequence XML data. This is discussed in a couple of locations: http://social.technet.microsoft.com/forums/en-us/configmgrosd/thread/6C4A4BB2-847B-4290-878C-3E041D9B3FD2 ...3 weeks ago -
Cannot Connect to WMI Provider. You do not have permissions of the server is unreachable
eITWebGuru —
Authority: 110
Sometime while connecting to MSSQL Server Configuration Manager it throws following Error Cannot Connect to WMI Provider. You do not have permissions of the server is unreachable. Note that you can only manage SQL Server 2005 servers with the SQL Server Configuration Manager.Invalid namespace[0x8004100e] ...3 weeks ago -
CIM instances
MSMVPS.COM —
Authority: 433
We are use to using Get-WmiObject to retrieve information from WMI. if you have been following this blog for any length of time you will have see lots of examples of that particular cmdlet. The CIM equivalent is Get-CIMInstance. It might appear that Get-CIMClass would be used but that is used to get information about ...3 weeks ago -
CIM instances
Richard Siddaway's Blog —
Authority: 115
We are use to using Get-WmiObject to retrieve information from WMI. if you have been following this blog for any length of time you will have see lots of examples of that particular cmdlet. The CIM equivalent is Get-CIMInstance. It might appear that Get-CIMClass would be used but that is used to get information about ...3 weeks ago -
PowerShell Community and the Windows System Administration Tool
Hey Scripting Guy! —
Authority: 457
Summary : See how guest blogger, Rich Prescott, leveraged the Windows PowerShell community as he built his popular ArPosh Client System Administration tool. Microsoft Scripting Guy, Ed Wilson, is here. We are really starting the new year off correctly. We have another very strong guest blogger today. Rich Prescott, ...3 weeks ago


Follow Technorati