您最多选择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."