The Group Policy Update Conundrum 11/08/2017 When testing new Group Policy Objects (GPOs) to see if they are being applied correctly, I would always run the same command without reall...Read More
PowerShell Basics - "Get-EventLog" 9/29/2017 You can actually use PowerShell to parse your computer's event logs. There are several parameters available, but you can try out the ...Read More
PowerShell Basics - "Get-Service" 9/29/2017 The Get-Service cmdlet provides a list of all of the services that are installed on the target system. Get all services on the computer...Read More
PowerShell Basics - "Get-ExecutionPolicy" 9/29/2017 Although you can create and execute PowerShell scripts, Microsoft has disabled scripting by default in an effort to prevent malicious cod...Read More
Get Serial Number via PowerShell 9/29/2017 To get the serial number from a computer/server run the following PowerShell command: gwmi win32_bios | fl SerialNumber To get more d...Read More
PowerShell Basics - "Get-Process" 9/28/2017 Just as you can use the Get-Service command to display a list of all of the system services, you can use the Get-Process command to displ...Read More
Changing the Product Key using PowerShell 9/28/2017 To change a computer/server's product key run the following PowerShell command in privileged mode: Display the current product key:...Read More