Skip to content

Instantly share code, notes, and snippets.

@phy25
Created August 8, 2014 08:04
Show Gist options
  • Save phy25/534eefa5fb21e7ecf4ac to your computer and use it in GitHub Desktop.
Save phy25/534eefa5fb21e7ecf4ac to your computer and use it in GitHub Desktop.
将本文件夹下所有文件的系统属性删除
@echo off
echo code via http://www.panlilu.com/archives/284
for /f "delims=" %%i in ('dir /ah /s/b') do attrib "%%i" -s
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment