用于压缩用户主文件夹并将其移动到共享驱动器的Powershell脚本

时间:2016-09-02 14:16:34

标签: powershell powershell-v2.0 powershell-v3.0 powershell-v4.0

我想移动用户主文件夹以共享已离开公司的驱动器,但在此之前我想ZIP使用powershell script。您可以建议我或快速写powershell script ZIPs文件夹并移动到共享驱动器创建相同的文件夹名称,zip文件也在目标文件夹中同名。例如,如果源文件夹是C:\test和目标is \\share\test\

先谢谢,

1 个答案:

答案 0 :(得分:0)

有几种方法可以压缩文件夹:
Creating a zipped/compressed folder in Windows using Powershell or the command line

创建新文件夹很简单:

New-Item c:\folder -type directory

https://technet.microsoft.com/en-us/library/ee176914.aspx

移动文件也很简单:

Move-Item c:\source\file.zip c:\destination

https://technet.microsoft.com/en-us/library/ee176914.aspx