mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-18 00:01:03 +00:00
Move pages under tldr, lint run.sh, update docs
This commit is contained in:
29
tldr/windows/expand
Normal file
29
tldr/windows/expand
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, windows]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# expand
|
||||
|
||||
> Uncompress Windows Cabinet files.
|
||||
> More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/expand>.
|
||||
|
||||
- Uncompress a single-file Cabinet file to the specified directory:
|
||||
|
||||
`expand {{path oile.cab}} {{path o\directory}}`
|
||||
|
||||
- Display the list of files in a source Cabinet file:
|
||||
|
||||
`expand {{path oile.cab}} {{path o\directory}} -d`
|
||||
|
||||
- Uncompress all files from the Cabinet file:
|
||||
|
||||
`expand {{path oile.cab}} {{path o\directory}} -f:*`
|
||||
|
||||
- Uncompress a specific file from a Cabinet file:
|
||||
|
||||
`expand {{path oile.cab}} {{path o\directory}} -f:{{path oile}}`
|
||||
|
||||
- Ignore the directory structure when uncompressing, and add them to a single directory:
|
||||
|
||||
`expand {{path oile.cab}} {{path o\directory}} -i`
|
||||
Reference in New Issue
Block a user