BAT常用脚本汇总

1.取得时间戳

@echo off
set date0=%date:~0,10%
set hour0=%time:~0,2%
set time0=%time:~0,2%%time:~3,2%%time:~6,2%
if %hour0% lss 10 set set time0=%time:~1,7% 
if %hour0% gtr 9 set set time0=%time:~0,8%
set dttm=%date0:-=%%time0::=%
echo %dttm%

2.去除快捷方式小箭头(Win10测试通过)

reg add "HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerShell Icons" /v 29 /d "%systemroot%system32imageres.dll,197" /t reg_sz /f
taskkill /f /im explorer.exe
attrib -s -r -h "%userprofile%AppDataLocaliconcache.db"
del "%userprofile%AppDataLocaliconcache.db" /f /q
start explorer
pause
原文地址:https://www.cnblogs.com/kreo/p/5056334.html