|
Self Rendering Script
The following examples shows a script which prints the source of itself.
02 | scriptName = WScript.ScriptFullName |
03 | WScript.echo "Rendering Script : " & scriptName |
05 | Set fileSys = CreateObject( "Scripting.FileSystemObject" ) |
09 | set fileHandle = fileSys.OpenTextFile(scriptName,1) |
12 | scriptContent = fileHandle.ReadAll |
16 | WScript.echo scriptContent |
|
|
|