Hi kavi74,
You can execute a logon script with CScript if you build a shell script (e.g., a .cmd file) and execute your script inside the command window. For example:
@echo off
%SystemRoot%\system32\cscript.exe //nologo "%~dp0LogonScript.js"
... or something similar.
Hope this helps,
Bill