Group Policies · PowerShell

Powershell and Group Policy : “Find all Group Policy Objects in a domain environment using Powershell”

  Hi, As you know that yesterday we install “RSAT” tools and enable the “Group Policy” module for powershell. You can refer to this link about enable Group Policy Module. After Enabling our “Group Policy Module” our first task is to list all Group Policies. Let See which cmdlet we can use. Lets Start. Make… Continue reading Powershell and Group Policy : “Find all Group Policy Objects in a domain environment using Powershell”

PowerShell

Creating System Footprints using PowerShell

    WMI can retrieve a lot more object instances than you might think. If you submit a parent class, Get-WmiObject returns all instances of all derived classes. That’s why a simple line like the following can get you all hardware-related instances: PS> Get-WmiObject -Class CIM_PhysicalElement | Group-Object -Property __Class   Count Name                                                       Group… Continue reading Creating System Footprints using PowerShell