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