|
本帖最后由 holley2008 于 2018-6-4 08:41 编辑
看到“窄口牛”相关帖子,
http://bbs.wuyou.net/forum.php?m ... 08927&extra=&page=1
看到“窄口牛”的动图显示,突然想到这个功能对于经常会写些小脚本的我而言,特别有用。
虽然“窄口牛”脚本是在PE下实现的,但win平台稍微改改照样适用,于是参考如下:
- @echo off
- reg add "HKCR\Directory\Background\shell\WinXNew" /v "MUIVerb" /d "新建扩展名" /f
- reg add "HKCR\Directory\Background\shell\WinXNew" /v "Position" /d "Bottom" /f
- reg add "HKCR\Directory\Background\shell\WinXNew" /v "SubCommands" /d "" /f
- reg add "HKCR\Directory\Background\shell\WinXNew" /v "SeparatorAfter" /d "" /f
- reg add "HKCR\Directory\Background\shell\WinXNew\shell" /ve /d "" /f
- reg add "HKCR\Directory\Background\shell\WinXNew\shell\1.txt" /v "Icon" /d "imageres.dll,-2" /f
- reg add "HKCR\Directory\Background\shell\WinXNew\shell\1.txt" /ve /d "空文件" /f
- if exist "%windir%\nulname.vbs" (del /q "%windir%\nulname.vbs")
- reg add "HKCR\Directory\Background\shell\WinXNew\shell\1.txt\command" /ve /d "wscript %windir%\nulname.vbs" /f
- echo Dim na>>%systemroot%\nulname.vbs
- echo na=Inputbox("请输入扩展名:","扩展名","")>>%systemroot%\nulname.vbs
- echo If IsEmpty(na) Then>>%systemroot%\nulname.vbs
- echo wscript.quit>>%systemroot%\nulname.vbs
- echo End If>>%systemroot%\nulname.vbs
- echo set fso=createobject("scripting.filesystemobject") : name=^1>>%systemroot%\nulname.vbs
- echo while fso.fileexists("新文件"^&""^&name^&"."^&na)=true>>%systemroot%\nulname.vbs
- echo name=name+1>>%systemroot%\nulname.vbs
- echo wend>>%systemroot%\nulname.vbs
- echo set o=fso.opentextfile("新文件"^&""^&name^&"."^&na,2,true)>>%systemroot%\nulname.vbs
- echo wscript.quit>>%systemroot%\nulname.vbs
复制代码
代码几乎全部照套“窄口牛”的示例,这里表示感谢!!!今早测试,发现取消后,再次运行不生效,原来是条件判断未完全生效,故再次修改。
使用方法:
代码保存为.bat文件,直接运行,在桌面或任意文件夹中,右键会多出“新建扩展名”-“空文件”,,,不输扩展名,直接确定即生成类似hosts的无后缀名文件。
取消方法:
cmd窗口运行:reg delete HKCR\Directory\Background\shell\WinXNew /f 即可。
|
评分
-
查看全部评分
|