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

Self Rendering Script 

The following examples shows a script which prints the source of itself.

File Name  :  
source/VBS/advanced/self_render.vbs 
Author  :  Sudhakar KV
Email  :  kvenkatasudhakar@gmail.com
01'Script Name along with path
02scriptName = WScript.ScriptFullName
03WScript.echo "Rendering Script : " & scriptName
04 
05Set fileSys = CreateObject("Scripting.FileSystemObject")
06 
07'IOMode = 1 for reading
08'IOMode = 2 for writing
09set fileHandle = fileSys.OpenTextFile(scriptName,1)
10 
11'Returns a string containing entire content of text stream
12scriptContent = fileHandle.ReadAll
13fileHandle.Close
14 
15'Render the file content
16WScript.echo scriptContent



 
  


  
bl  br