News

To remove an application using PowerShell, you first need to obtain a list of installed applications on the machine using the command "Get-WmiObject -Class Win32_Product | Select-Object -Property ...
it’s also a perfect job for PowerShell. Frequently the hardest part of using WMI is finding the right class to use. Running Get-WmiObject with the -List parameter will return over a thousand ...
Being able to quickly identify what software is installed on your servers has value for a host of reasons. Managing software licensing costs and entitlements, planning upgrade budgets, identifying ...
Using PowerShell you can access this WMI class with the Get-CimInstance or Get-WmiObject cmdlets. In Figure 1 below, you find the first user profile on the local computer. You’ll notice many useful ...
One of the things that PowerShell doesn't have is ... of the accounts that are on the domain. Get-WmiObject -Class Win32_UserAccount -Filter "LocalAccount='True'" [Click on image for larger view.] ...
You can use the GetBIOS PowerShell module to retrieve settings from various BIOS manufacturers on either a local or remote computer. This post will show you how to access computer BIOS settings ...
If we change the value of $class, we can re-run the Get-WMIObject command without editing. This helps a little bit towards efficiency, but PowerShell 3.0 will take ...
There are code snippets, sample cmdlets (pronounced “command lets”) and sample scripts from which you can build your own PowerShell solutions. Ready, class ... easy to get a list of MAC ...
in trying to figure out which machines are patched/not patched against wannacry, I used a Powershell ... eventually found out Get-Hotfix is not a completely accurate list in all circumstances ...