Powershell Compress-Archive 文件到文件夹中

Posted

技术标签:

【中文标题】Powershell Compress-Archive 文件到文件夹中【英文标题】:Powershell Compress-Archive files into folders 【发布时间】:2018-04-26 14:28:27 【问题描述】:

如何将结果放入存档的文件夹中? 例如:

$Compress-Archive -Path .\Client\*.exe, .\Server\*.exe  -DestinationPath ('Build_' + (get-date -Format yyyy.MM.dd) + '.zip')

我想在存档中有一个包含 exe 文件的文件夹 Client 和一个包含 exe 文件的文件夹 Server。现在所有文件都直接位于存档的“根”中。

压缩整个文件夹时,文件夹名称包含在存档中。

【问题讨论】:

【参考方案1】:

这样的事情可能会让你从这里开始修改:-

https://social.technet.microsoft.com/Forums/en-US/fb835e63-0ed5-417b-980b-46d2982f4e0b/add-a-folder-to-an-existing-zip-file-using-powershell-v4-or-lower?forum=winserverpowershell

$sources = "c:\client","c:\server"
$destination = "c:\test\" + "multifoler.zip"

function Add-Zip
   
    param([string]$zipfilename)

    if(-not (test-path($zipfilename)))
    
        set-content $zipfilename ("PK" + [char]5 + [char]6 + ("$([char]0)" * 18))
        (dir $zipfilename).IsReadOnly = $false  


$shellApplication = new-object -com shell.application
$zipPackage = $shellApplication.NameSpace($zipfilename)

foreach($file in $input) 
 
        $zipPackage.CopyHere($file.FullName)
        Start-sleep -milliseconds 500



foreach($source in $sources)
 Get-Item $source | Add-Zip $destination

【讨论】:

只要压缩整个文件夹就可以了,但是当在 $sources 中使用通配符时,所有文件都在一个没有文件夹的文件中

以上是关于Powershell Compress-Archive 文件到文件夹中的主要内容,如果未能解决你的问题,请参考以下文章

powershell PowerShell:启动PowerShell作为其他用户提升

powershell [提示输入powershell] #powershell #input #prompt

powershell 测量PowerShell命令或PowerShell脚本的速度

powershell远程下载exe并执行

powershell 使用啥端口

powershell PowerShell使用PowerShell创建本地管理员帐户