6 lines
142 B
PowerShell
6 lines
142 B
PowerShell
$compress = @{
|
|
Path = "v2\*"
|
|
CompressionLevel = "NoCompression"
|
|
DestinationPath = "output\SearchSwitch.zip"
|
|
}
|
|
Compress-Archive @compress |