U盘转ntfs格式.不影响U盘数据

新建文本文档

输入

@echo off
for /f "tokens=2 delims==" %%a in ('wmic LogicalDisk where "DriveType='2'" get DeviceID /value') do set DriveU=%%~a
if defined DriveU convert %DriveU% /fs:ntfs /x
pause

后戳 .TXT 改为 .BAT
运行就可以了

发表新评论