SearchSwitch/scripts/PackXPI.ps1

6 lines
149 B
PowerShell
Raw Normal View History

2022-09-27 18:47:17 -03:00
$compress = @{
Path = "v2\*"
CompressionLevel = "NoCompression"
DestinationPath = "output\SearchSwitch.zip"
}
Compress-Archive @compress -Force