1
我有一個腳本powershell,腳本可以將數據庫備份文件複製到網絡驅動器。 該腳本只從2複製2個文件。 我想將本地磁盤D上的所有文件複製到網絡驅動器,並歸檔文件。 我該如何修復這個腳本?使用PowerShell將文件複製到共享驅動器
$TimeStamp = get-date -f dd_MM_yyyy
$Destination = "M:\networkdrive\folder\BACKUP_10.200.153.55\DATA_" + $TimeStamp
New-Item -ItemType directory -Path $Destination -Force
Copy-Item -Path D:\MSSQL\BACKUP\*.* -Destination $Destination -Force
Remove-Item D:\MSSQL\BACKUP\*.*
是否要從該目錄複製項目?你的最終目標是什麼? – TheIncorrigible1