24 Haziran 2020 Çarşamba

Powershell Compress-Archive - Zıp Dosyası Oluşturur

Giriş
zip dosyası oluşturur

-Path seçeneği
Zip'lenecek kaynağı (dosya veya  dizin) gösterir.

Örnek
Şöyle yaparız.
# Create a zip file with the contents of C:\Stuff\
Compress-Archive -Path C:\Stuff -DestinationPath archive.zip

# Add more files to the zip file
# (Existing files in the zip file with the same name are replaced)
Compress-Archive -Path C:\OtherStuff\*.txt -Update -DestinationPath archive.zip

# Extract the zip file to C:\Destination\
Expand-Archive -Path archive.zip -DestinationPath C:\Destination

Hiç yorum yok:

Yorum Gönder