Alan's Blog

"Yeah. I wrote a script that will do that."

Menu
  • About My Blog
Menu

Upgrade to PowerShell 3 (or 4)

Posted on July 27, 2013September 12, 2020 by Alan

If you are running Windows 7 and have not yet upgraded to PowerShell 3, do it now. The installation files are here.  I use Output-GridView all the time, and PS3 cuts the DCOM strings. Here is an article that explains the changes from PS2 for both versions, and another that describes the version 3 changes..  I am going to try to remember version dependencies in later scripts; an easy PowerShell version check is below.

$reqVer = 3
if ((get-host).version.major -lt $reqVer) {
  Write-Error "This script requires Powershell $reqVer or later."
  pause
  Exit-PSSession
}
									

PowerShell 4 has been recently released, but I have not installed it yet.  Although I don’t want to write scripts that require an PowerShell update to run, I have decided that I will be relying on PS 3 features for my scripts.

Update 8-3-13.  I learned in my PowerShell user group that there is a much easier way to do the version check.  Instead of the code above use:

#Requires -version 3
									

.

#Requires is supported from PS 1.0 to PS 4.0. To learn more about it, read about_Requires.

Leave a Reply

You must be logged in to post a comment.

Search

Please Note

All the scripts are saved as .txt files. Newer files have a “View Script” button which will let you save or open a script in notepad. For earlier posts, the easiest way to download with IE is to right click on the link and use “Save Target As”. Rename file from Name_ext.txt to Name.ext.

To see a full post after searching, please click on the title.

PowerShell Scripts were written with version 3 or later.

https connections are supported.

All new users accounts must be approved, as are comments. Please be patient.  If you find a post error or a script which doesn’t work as expected, I appreciate being notified.  My email is my first name at the domain name, and you are welcome to contact me that way.

Tags

1E ACLS Active Directory ActiveDirectory ADSI Advanced Functions Audit Change Administrator Password COMObject Computer Groups DateTime Desktop DNS Excel FileScriptingObject Forms General GPO GPS Group Policy Hacks ISE Lockout logons NAV740 Nessus OU OU permissions Outlook Pick Folder Power PowerShell Powershell Scriptlets RDP SCCM schedule reboot Scripting Security Shell.Application user information VBA Windows Update WMI WordPress WPF

Categories

akaplan.com

  • Back to Home Page

Archives

Scripting Sites

  • A Big Pile of Small Things
  • Adam, the Automator
  • Art of the DBA
  • Ashley McGlone
  • Boe Prox
  • Carlo Mancini
  • DexterPOSH
  • Doug Finke
  • Jaap Brasser's Blog
  • JeffOps The Scripting Dutchman
  • Jonathan Medd's Blog
  • Keith Hill's Blog
  • LazyWinAdmin
  • Nana Lakshmanan
  • PowerShell Magazine
  • PowerShell Team Blog
  • PowerShell.org
  • PwrShell.net
  • Richard Siddaway's Blog
  • Ryan Yates' Blog
  • Skatterbrainz
  • The Lonely Administrator

SQL Site

  • Art of the DBA

Meta

  • Register
  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org
©2025 Alan's Blog | Theme by SuperbThemes

Terms and Conditions - Privacy Policy