Function: New-SignedScript – Easily Sign One or Many Scripts with Your Code Signing Cert
Signs a PowerShell script with a code signing certificate.
Syntax
New-SignedScript [[-path] ] [-Verbose] [-Debug] [-ErrorAction ] [-WarningAction ] [-ErrorVariable ] [-WarningVariable ] [-OutVariable ] [-OutBuffer ] [-WhatIf] [-Confirm]
Detailed Description
One of the concerns about using a PowerShell script is that it often requires the user to change the Execution Policy on the machine the script is running on. This can cause security concerns, because when the Execution Policy is lowered, any script can run, including those with malicious intent. For more information on setting the Execution Policy, see Set-ExecutionPolicy.
Of course, you need a code signing certificate in order to sign scripts. Fellow Exchange MVP Mike Pfeiffer wrote an informative article, Obtaining a Code Signing Certificate and Signing PowerShell Scripts that covers using an internal Certificate Authority. Third party Certificate Authorities (CAs) such as Digicert also provide code signing certificates. I can’t recommend Digicert enough. I have both a standard code signing certificate and an Extended Validation code signing certificate.
But signing scripts manually can be a little cumbersome. This function gets the current code signing certificate, verifies it’s not expired, and then signs the script. The script will only sign .ps1 files, and will not attempt to sign a script that’s already signed.
Example
New-SignedScript -path [path to script]
such as
New-SignedScript -path .\myscript.ps1
You can also pipeline files to this function, for example:
Get-Item *.ps1 | New-SignedScript
Installation
Nothing special here. Once you have a valid code signing certificate installed, the function should work as designed.
Donations
I’ve never been one to really solicit donations for my work. My offerings are created because *I* need to solve a problem, and once I do, it makes sense to offer the results of my work to the public. I mean, let’s face it: I can’t be the only one with that particular issue, right? Quite often, to my surprise, I’m asked why I don’t have a “donate” button so people can donate a few bucks. I’ve never really put much thought into it. But those inquiries are coming more often now, so I’m yielding to them. If you’d like to donate, you can send a few bucks via PayPal at https://www.paypal.me/PatRichard. Money collected from that will go to the costs of my website (hosting and domain names), as well as to my home lab.
Download
v1.4 – 09-08-2017 – New-SignedScript.v1.4.zip
v1.3 – 09-18-2016 – New-SignedScript.v1.3.zip
v1.1 – 06-10-2014 – New-SignedScript.v1.1.zip
v1.0 – 09-20-2012 – New-SignedScript.v1.0.zip
Changelog
See changelog for info on latest versions, including bug fixes, code tweaks, etc.
Follow Me