wmi

Tag details

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!

Look up Offsite Link "wmi" at The Free Dictionary

Latest blogosphere posts tagged “wmi”
 

  • WMI associations through CIM cmdlets


    MSMVPS.COMAuthority Authority: 480
    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 ...
    1 week ago
  • WMI associations through CIM cmdlets


    Richard Siddaway's BlogAuthority 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 ...
    1 week ago
  • Associated Classes


    Richard Siddaway's BlogAuthority 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 ...
    1 week ago
  • Associated Classes


    MSMVPS.COMAuthority Authority: 480
    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 ...
    1 week ago
  • Get the logged on users


    MSMVPS.COMAuthority Authority: 480
    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 | ...
    1 week ago
  • Get the logged on users


    Richard Siddaway's BlogAuthority 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 . ...
    1 week ago
  • CIM sessions


    MSMVPS.COMAuthority Authority: 480
    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 ...
    1 week ago
  • CIM sessions


    Richard Siddaway's BlogAuthority 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 ...
    1 week ago
  • Boot partition


    MSMVPS.COMAuthority Authority: 480
    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 ) ] ...
    1 week ago
  • Boot partition


    Richard Siddaway's BlogAuthority 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 { ...
    1 week ago
  • CIM cmdlets and remote machines


    Richard Siddaway's BlogAuthority 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.COMAuthority Authority: 480
    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 RoomAuthority Authority: 97
    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 ...
    2 weeks ago
  • PowerShell: PowerEvents Module Update to 0.3 Alpha


    Trevor Sullivan's Tech RoomAuthority Authority: 97
    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 ...
    2 weeks ago
  • PowerShell Community and the Windows System Administration Tool


    Hey Scripting Guy!Authority Authority: 458
    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
  • Changing IP Connection Metric


    MSMVPS.COMAuthority Authority: 480
    A question on the forums asked how the connection metrics could be set on a Windows system. We need to start by identifying the network adapters using this function function test-ipmetric { Get-WmiObject -Class Win32_NetworkAdapter -Filter "AdapterType = Ethernet 802.3" | foreach { Get-WmiObject ...
    4 weeks ago

Comments about wmi

Personal attacks are NOT allowed
Please read our comment policy