You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

10 regels
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."