Turn off ScreenSaver with Powershell

Turn off ScreenSaver with Powershell

Turning off the screensaver can be done by using PowerShell to change three registry settings. You can check your current settings in your registry at this location: HKEY Current User\Software\Policies\Microsoft\Windows\Control Panel\Desktop  Run this code in...

PowerShell Group Membership to CSV file

I love the new PowerShell 3.0 Active Directory commands.  I find that I rarely need to use 3rd party cmdlets anymore. Today I was tasked with pulling group membership from a specific group in Active Directory and exporting specific data on each group member to a CSV...
PowerShell Security Warning

PowerShell Security Warning

You may get the following security warning in Powershell even though you have your execution policy set to unrestricted.   Security warning Run only scripts that you trust. While scripts from the internet can be useful, this script can potentially harm your computer....

Active Directory PowerShell Commands

You can add Active Directory commands to PowerShell on a Windows 7 or Windows 8 workstation by adding the Remote Management Tools. Use one of these links to install the PowerShell Active Directory module for your client. Remote server administration tools for Windows...

Determine current version of PowerShell

PowerShell gives you an easy way to determine what version is installed on your computer.  Use the automatic variable $PSVersionTable. Name —– Value —– PSVersion 3.0 WSManStackVersion 3.0 SerializationVersion 1.1.0.1 CLRVersion 4.0.30319.18046...