ps/Modules/Alkami.PowerShell.Common/Public/New-7Zip.ps1

16 lines
301 B
PowerShell
Raw Permalink Normal View History

2023-05-30 22:51:22 -07:00
function New-7Zip {
<#
.SYNOPSIS
Creates a 7-Zip Archive from a List of Files
#>
param(
$ZipFileName,
$OutDirectory,
$FilesToAdd
)
[Array]$arguments = "a", "-tzip", "$ZipFileName", "-o $OutDirectory", "-bd", "-y", $FilesToAdd
& $pathToZipExe $arguments
}