Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

10 строки
391 B

  1. $sourcePath = Get-Location
  2. $destination = Join-Path -Path $sourcePath -ChildPath "tsms.zip"
  3. $exclude = @(".git", ".next", ".vscode", "node_modules", ".gitignore", "zip_project.ps1", "tsms.zip")
  4. $files = Get-ChildItem -Path $sourcePath -Exclude $exclude
  5. Compress-Archive -Path $files -DestinationPath $destination -CompressionLevel Fastest -Force
  6. Write-Host "Folder zipped successfully."