为文件夹增加注释
把以下文件保存为 增加注释.BAT 文件.
然后放到 send to文件夹(C:\Documents and Settings\wjm\SendTo)下面.
对要增加注释的文件夹,右键,发送到 "增加注释"
Quote
echo www.wjm.name
@echo off
@echo off
set /p it=输入你对此文件夹的描述信息:
set fn=%1
attrib %fn%\desktop.ini -s -h
del %fn%\desktop.ini
echo [.ShellClassInfo]>%fn%\desktop.ini
echo InfoTip=%it%>>%fn%\desktop.ini
attrib %fn%\desktop.ini +h +s
attrib %fn% +s

