From 71df34f47a18cff9c84e5f0d9063bdf3cb8413bc Mon Sep 17 00:00:00 2001 From: Jaap Brasser Date: Sun, 17 Sep 2017 11:58:11 +0200 Subject: [PATCH] Added Provider parameter help --- ConvertTo-EncodedUrl/ConvertTo-EncodedUrl.ps1 | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ConvertTo-EncodedUrl/ConvertTo-EncodedUrl.ps1 b/ConvertTo-EncodedUrl/ConvertTo-EncodedUrl.ps1 index e5491cd..8931003 100644 --- a/ConvertTo-EncodedUrl/ConvertTo-EncodedUrl.ps1 +++ b/ConvertTo-EncodedUrl/ConvertTo-EncodedUrl.ps1 @@ -9,12 +9,15 @@ This function can be used to convert a Url to a Percent-Encoded Url of a specifi .PARAMETER Uri The Uri that should be encoded +.PARAMETER Provider +The provider that should be use for the percent encoded url forwarding. Currently Google and Search are supported + .NOTES Name: ConvertTo-EncodedUrl Author: Jaap Brasser DateCreated: 2017-09-10 DateUpdated: 2017-09-10 -Version: 1.0.0 +Version: 1.0.1 Blog: http://www.jaapbrasser.com .LINK @@ -91,4 +94,4 @@ Takes input from the pipeline and converts the urls into percent encoded urls wi } } } -} \ No newline at end of file +}