
CODE: [Copy to clipboard]显示F盘下所有.exe文件的创建时间,命令行登陆QQ你可以搜索一下,前两天还看到来着@echo off
for /r F: %%a in (*.exe) do (
for /f "tokens=1,2" %%b in ('dir /t:c "%%~fnxa"^|find "%%~nxa"') do (
echo %%~nxa 的创建时间为 %%b %%c )
)
pause
CODE: [Copy to clipboard]wmic datafile where "name='c:\\windows\\explorer.exe'" get creationdate
| 欢迎光临 中国DOS联盟论坛 (http://cndos.fam.cx/forum/) | Powered by Discuz! 2.5 |