Files
node-versions/helpers/win-helpers.psm1
Maxim Lobanov 239f218602 www
2020-04-23 06:07:49 +03:00

15 lines
329 B
PowerShell

<#
.SYNOPSIS
Unpack *.7z file
#>
function Extract-7ZipArchive {
param(
[Parameter(Mandatory=$true)]
[String]$ArchivePath,
[Parameter(Mandatory=$true)]
[String]$OutputDirectory
)
Write-Debug "Extract $ArchivePath to $OutputDirectory"
7z.exe x $ArchivePath -o"$OutputDirectory" -y
}