使用 Windows 內建的 PowerShell 可以自動刪除檔名中“_invalid”字串。為了恢復PCCSRV目錄及其子目錄裡面這些無效的檔案名稱,請執行以下步驟:
- 打開 Windows PowerShell. 點選 開始 > 所有程式>附屬應用程式> Windows PowerShell.
- 右鍵點擊 Windows PowerShell 並以系統管理員執行.
- 在 Windows PowerShell 視窗中, 導向當前路徑到...\PCCSRV 資料夾.
點擊圖片放大
- 輸入以下指令:
Get-ChildItem -Recurse -Include *_invalid | Rename-Item -NewName { $_.name -replace "_invalid","" }點擊圖片放大
- 關閉 Windows PowerShell.
- 確認PCCSRV資料夾中不再有“_invalid”字串的檔案.