tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 VB Script > Advanced > Self Deleting Script

Self Deleting Script 

The following example shows a self deleting script.

File Name  :  
source/VBS/advanced/self_delete.vbs 
Author  :  Sudhakar KV
Email  :  kvenkatasudhakar@gmail.com
1'Script Name along with path
2path=WScript.ScriptFullName
3WScript.Echo "Deleting the script : " & path
4 
5Set fsObj=CreateObject("Scripting.FileSystemObject")
6fsObj.DeleteFile(path)



 
  


  
bl  br