search
top
Currently Browsing: Powershell

How To Remove Windows 10 Pre-Installed Apps

Introduction You just installed Windows 10 and have been getting the feel of Microsoft’s latest version and notice there is alot of extra stuff installed. Windows 10 comes with a bunch of pre-installed apps. Fortunately, you can use PowerShell to remove any app you don’t like. You will need Administrator privileges to remove them from your system. Step 1 – Open a PowerShell Session Open... read more

Retrieving Hyperthreading CPU Information on Windows 2008 R2 using PowerShell and CoreInfo

Sometimes you just need to get specific information about the processor and the settings on a server and you really don’t want to get into the BIOS and dig around and find it. There are many ways that we can do that but for this post let’s use PowerShell and a SysInternals tool called CoreInfo. This post is due to a customer request on information from a remote physical server. CoreInfo... read more

How To Uninstall Programs Using PowerShell

PowerShell is just one of those tools for Windows that continues to get better and better in uses you find on a day to day basis. One such tedious task is uninstalling programs. Wouldn’t it be awesome to create a script to automate this for many or even one system? In this post we will cover how to get a list of installed programs and how to remove one at a time or many at once. Using PowerShell to... read more

How To Retrieve Windows AD Group Members using PowerShell

Introduction As part of daily administration we are constantly being asked by Auditors and managers for a list of the individuals in groups. In the past and current we can still use the venerable net commands to get the access. With PowerShell we can it quickly and in a format easier than before. In this post we will over how to get the information and export it into other formats. To use the... read more

Finding WWN’s on Windows Server 2012 Using PowerShell

With a single command you can retrieve WWN’s on Windows Server 2012 R2 using PowerShell. Open the PowerShell command and type: Get-WmiObject -class MSFC_FCAdapterHBAAttributes -namespace “root\WMI” | ForEach-Object {(($_.NodeWWN) | ForEach-Object {“{0:x}” -f $_}) -join “:”} And that is all there is to it. Simple and fast using PowerShell. Update: I have been been... read more

« Previous Entries Next Entries »

top