

The command’s notation would look like this: Compress-Archive -Path C:\path\to\file\*.jpg -DestinationPath C:\path\to\archive.zip You can tell PowerShell to archive them without touching the others explicitly. jpg, etc.) but only want to compress all of one type. Next, say you have a folder with a bunch of different file types (.doc. It should look something like this: Compress-Archive -Path C:\path\to\file\* -DestinationPath C:\path\to\archive.zip By adding an asterisk (*) to the end of the file path, you tell PowerShell only to grab what’s inside of the root directory. However, if you want to exclude the root folder from the Zip file, you can use a wildcard to omit it from the archive.
#Zip pkware command line examples how to
To use a wildcard with Compress-Archive, you must use the -Path parameter instead, as -LiteralPath does not accept them.Ībove, we covered how to include the root directory and all of its files and subdirectories when creating an archive file.

When you use the character, you can exclude the root directory, compress only files in a directory, or choose all files of a specific type. The Compress-Archive cmdlet lets you use a wildcard character (*) to expand the functionality even further. PowerShell takes everything inside of the root directory and compresses it, subfolders and all. In the previous example, we put the path to a directory with multiple files and folders in it without specifying individual files. Alternatively, to zip the entire contents of a folder-and all of its subfolders-you can use the following command, replacing and with the path to the files you want to compress and the name and folder you want it to go to, respectively: Compress-Archive -LiteralPath -DestinationPath
