7 lines
166 B
PowerShell
7 lines
166 B
PowerShell
$Files = @(
|
|
"IntelliJ IDEA Global Settings"
|
|
"installed.txt"
|
|
"codestyles"
|
|
"options"
|
|
)
|
|
Compress-Archive -DestinationPath JetBrains-ACP.zip -Path $Files
|