Horje
powershell zip Code Example
powershell zip
# 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
Compress files powershell
Compress-Archive -Path (Join-Path $filesDir "*.*") -DestinationPath (Join-Path $outDir "Files_Compressed.zip")




Shell

Related
install gunicorn Code Example install gunicorn Code Example
ImportError: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.22' not found Code Example ImportError: /usr/lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.22' not found Code Example
gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3> Code Example gunicorn.errors.HaltServer: <HaltServer 'Worker failed to boot.' 3> Code Example
rename branch to main Code Example rename branch to main Code Example
how to configure bluetooth on ubuntu command line Code Example how to configure bluetooth on ubuntu command line Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
16