Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

What is a WS Engine?

Status
Not open for further replies.

yanqui

Technical User
Aug 19, 2002
70
US
I can't find a good description for this. I found a website that said that if your WS engine is not 5.5 or higher you won't be able to decode encoded script. Do I need to find an update for mine if my W98 computer has never had it updated?
 
Give us details of the site you found this on, how your arrived at the site and why you think the above information may apply to you.

Regards,
 
Suspicion that they may be talking about the web browser. Maybe about IE 5.5.

Ed Fair
Give the wrong symptoms, get the wrong solutions.
 
It was probably "WSH", the "Windows Scripting Host". I don't know about "ver 5.5", I have XP that shows ver 5.1, and everything works OK.
 
Yanqui,

It IS Windows Scripting Host. The current engine is v5.6.0.8825 and - for Windows 98, ME and NT 4.0 - is available for download from Microsoft at
One way to check what version of WSH you have is to save the following code as a .JS file (e.g. check-wsh-ver.js) then run it.

Code:
var Message, Title, tmp;
var vbInformation = 64;
var vbOKOnly = 0;
Message = "                           This is " + WScript.Application;
Message = Message + " v" + WScript.Version + "\n\n";
Message = Message + "(If the version shown above is NOT v5.5 ";
Message = Message + "or greater then please upgrade it.)"; 
Title = "Windows Script Host version checker";
var objAdr = WScript.CreateObject("WScript.Shell");
tmp = objAdr.Popup(Message, vbInformation + vbOKOnly, Title);

Hope this helps...

Rick
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top