Scriptinfo.ps1


<#PSScriptInfo
 
.VERSION 1.0.0
 
.GUID 58101b69-ce79-49ac-b675-890ad1932ba7
 
.AUTHOR Jaap Brasser
 
.COMPANYNAME PowerShell Community
 
.COPYRIGHT
 
.TAGS PowerShell Percent Encoding Obfuscation PowerShell Url Encoding Security
 
.LICENSEURI
 
.PROJECTURI https://github.com/jaapbrasser/SharedScripts/tree/master/ConvertFrom-EncodedUrl
 
.ICONURI
 
.EXTERNALMODULEDEPENDENCIES
 
.REQUIREDSCRIPTS
 
.EXTERNALSCRIPTDEPENDENCIES
 
.RELEASENOTES
 
 
#>


<#
 
.DESCRIPTION
 This function can be used to extract Percent-Encoded information from urls and display that information and return that as a PowerShell custom object. This function is pipeline aware and urls can be piped directly into this function.
 
#>
 
Param()