[编程实例]vbs编写右键-新建新的文件类型的程序

 
  1. 'vbs编写创建新的文件类型的程序
  2. set ws=createobject("wscript.shell")
  3. a=inputbox("Tell me witch file you need to create?","File creater","bat")
  4. ws.regwrite "HKEY_CLASSES_ROOT/."&a&"/ShellNew/NullFile","" 

你可能感兴趣的:(编程)