From 8cbb2e2252f052f2a8566d8740d9cf4c5b915fbf Mon Sep 17 00:00:00 2001 From: lksz Date: Thu, 24 Jun 2021 09:43:37 -0400 Subject: [PATCH] =Added comment to convertto-zip for clarity --- 7zip/ConvertTo-Zip.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/7zip/ConvertTo-Zip.ps1 b/7zip/ConvertTo-Zip.ps1 index 0a8a247..454eefa 100644 --- a/7zip/ConvertTo-Zip.ps1 +++ b/7zip/ConvertTo-Zip.ps1 @@ -2,6 +2,7 @@ [string]$SourcePath=".", [string]$SourceSet="*.rar", [switch]$Recurse, + # The extension of the output zip file, don't forget to include the dot, default is ".zip" [string]$ZipExtension=".zip", [string]$ZipDestPath="./zipped", [string]$ZipOptions="-mm=Deflate -mfb=258 -mpass=15",