PowerShell 技能连载 - 解压 ZIP 文件

在 PowerShell 5.0 中,有一个新的 cmdlet 可以解压 ZIP 文件:

#requires -Version 5

$Source = 'C:\somezipfile.zip'
$Destination = 'C:\somefolder'
$Overwrite = $true
$ShowDestinationFolder = $true

Expand-Archive -Path $Source -DestinationPath $Destination -Force:$Overwrite

if ($ShowDestinationFolder)
{
  explorer.exe $Destination
}

PowerShell 技能连载 - 解压 ZIP 文件

http://blog.vichamp.com/2015/07/28/unzipping-zip-files/

作者

吴波

发布于

2015-07-28

更新于

2022-07-06

许可协议

评论