The following example shows a self deleting script.
1
'Script Name along with path
2
path=WScript.ScriptFullName
3
WScript.Echo
"Deleting the script : "
& path
4
5
Set
fsObj=CreateObject(
"Scripting.FileSystemObject"
)
6
fsObj.DeleteFile(path)