'getVersion.vbs 'Will get the version of WScript that the user is running 'Scripting by Fusion 13 'webmaster@Fusion13.com Please send attachments and personal programs and or scripts 'computing.Fusion13.com '7-22-01 'Copyright Fusion 13 Option Explicit dim vs vs = Wscript.version Wscript.echo vs if vs >= "5.1" then Wscript.echo "You have a newer version of WScript!" else WScript.echo "You have an older version of WScript! =(" end if