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