[编程实例]批处理删除生成的vbs

  1.  ::删除生成的vbs
  2. @ECHO OFF
  3. echo msgbox "what is you name?",16,"hello">v.vbs
  4. echo createobject("scripting.filesystemobject").deletefile wscript.scriptname>>v.vbs
  5. start v.vbs 

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