标签: powershell powershell-v2.0 powershell-ise
我有两个文件夹。
Folder1包含许多文件。
Folder2是folder1中一组文件的Service Pack。
我想通过PowerShell将Folder1中的特定文件替换为Folder2中的文件。
-Replace是正确的起点吗?我该怎么做呢?
-Replace
更新
Get-ChildItem $hotfix | ForEach-Object {Copy-Item $_.FullName -Destination $original -force}