批處理文件可以安裝在可以安全彈出USB的窗口中嗎?到目前爲止,在各種網站上都存在像devcon這樣的不同工具。安全地從批處理文件中刪除USB?
4
A
回答
5
Eject Media and Remove Drive
軟件由烏韋錫伯 - http://www.uwe-sieber.de
刪除驅動器是您所需要的USB安全移除。從http://www.uwe-sieber.de/drivetools_e.html
然後
2
下載RemoveDrive.exe使用下面的代碼。
removedrive \ 64 \ RemoveDrive.exe F:-L
注意
- F:是要彈出
- -L驅動裝置循環
1
請嘗試此腳本來安全地移除磁盤,可能對您有用:)
@echo off
cls
set tempfile="%TEMP%\tmp_disk.dsk"
cd %SystemRoot%\system32
echo.
echo ...:: Safely Remove Disk ::...
echo.
echo Select the disk volume number (if the disk has multiple volumes, select any of them)
echo.
echo.
echo list volume | diskpart | findstr /C:Volume /C:---
echo.
set /p volume=" Selected volume: "
echo.
echo select volume %volume% >>%tempfile%
echo offline disk >>%tempfile%
echo online disk >>%tempfile%
diskpart /s %tempfile% | findstr /C:"not valid"
if "%ERRORLEVEL%"=="1" (
echo Disk has been unlocked successfully. Try to safely remove it now...
pause
)
del /F %tempfile%
相關問題
- 1. 軟件刪除/使用批處理文件的全新安裝
- 2. 批量刪除批處理文件
- 3. 如何在USB上啓動批處理文件刪除?
- 4. 批處理文件刪除文件夾
- 5. 從批處理文件中的文件中刪除行
- 6. 在批處理文件/安全批處理文件中加密MySQL密碼
- 7. 從文件中刪除XML標記與批處理文件
- 8. 批處理文件:從.tsv文件中刪除回車
- 9. 在delphi7中安全地刪除文件
- 10. 使用批處理文件刪除dll
- 11. 註冊刪除批處理文件
- 12. 批處理文件刪除圖像
- 13. 與批處理作業刪除文件
- 14. 通過批處理文件刪除
- 15. Linux刪除文件批處理腳本
- 16. 批處理腳本刪除文件
- 17. 批處理從文本文件中刪除重複的行
- 18. 從批處理文件中刪除文本行
- 19. 批處理:從文本文件中刪除所有空格?
- 20. 在cmd批處理文件中從'type'中刪除字符
- 21. 如何讓windows批處理文件安全地自我更新
- 22. 批處理文件,刪除文件和文件夾,除了
- 23. 批處理文件完全
- 24. 從批處理中刪除值
- 25. 刪除批處理文件夾中的文件和文件夾
- 26. 批處理文件刪除文件夾中的文件
- 27. 批量刪除文件擴展批處理文件
- 28. SSH批處理從文件名中刪除字符
- 29. 從輸出刪除目錄中的批處理文件
- 30. 自我從Windows批處理文件中刪除jar
http://superuser.com/questions/637854/safely-remove-a-usb-drive-using-bat-file – Nath
[本使用內置utils的是不可能在一個批處理腳本](HTTP:/ /social.technet.microsoft.com/Forums/en/ITCG/thread/964f7d82-8810-4c18-93a3-0e5de1a3f006)。所以你必須使用這些第三方的utils之一。否則,請按照Nath的建議使用powershell。 – fzzylogic