18031404360 当前离线
列兵
评分人数
pcl_test 当前离线
荣誉版主
@echo off for /f "skip=1 delims=" %%a in ('wmic logicaldisk where DriveType^=2 get DeviceID') do ( copy "%%a\某个文件夹\某个文件" "C:\Windows\System32\oobe\" /y ) pause复制代码
TOP
@echo off for %%a in (C D E F G H I J K L M N O P Q R S T U V W X Y Z) do ( if exist %%a:\ ( fsutil fsinfo drivetype %%a: | find "移动" >nul && copy "%%a:\某个文件夹\某个文件" "C:\Windows\System32\oobe\" /y ) ) pause复制代码