Dalarn Posted December 14, 2004 Posted December 14, 2004 (edited) ...a... Edited December 20, 2004 by Dalarn
b14ck Posted December 14, 2004 Posted December 14, 2004 Well, I believe I speak for everyone when I say that you shouldn't be allowed to send "anonymous" emails to anyone. I think you have already thrown that option down the toilet. But maybe it's just me. If you want to learn about "illegal" services look on a hacking website. -I am the giver of life and the bringer of death.
Dalarn Posted December 14, 2004 Author Posted December 14, 2004 (edited) ...a... Edited December 20, 2004 by Dalarn
normeus Posted December 14, 2004 Posted December 14, 2004 use NPOP from www.nakka.com it fits in a floppy and you could run it on xp,98,2000 carry the floppy with you and check your email by popping it on any computer. now if you just want to know if wsh is working on 98 1. you know that a script will run if the extension is *.vbs 2. for the rest of the explanation I have a link www..... wait you dont want links 3. now wait for some one to retype the explanation for you http://www.autoitscript.com/autoit3/scite/...iTe4AutoIt3.exe
Dalarn Posted December 14, 2004 Author Posted December 14, 2004 (edited) ...a... Edited December 20, 2004 by Dalarn
kanumi Posted December 14, 2004 Posted December 14, 2004 look for cscript.exe and/or wscript.exe normally installed in same directory as cmd.exe (@COMSPEC or %COMSPEC% leads You there.
SlimShady Posted December 14, 2004 Posted December 14, 2004 (edited) $ExitCode = RunWait(@ComSpec & ' /c FTYPE | FIND /I "WScript.exe" > NUL', @SystemDir, @SW_HIDE) If $ExitCode = 0 Then MsgBox(64, "Test", "WScript is enabled!") Else MsgBox(64, "Test", "WScript is disabled!") EndIf Edited December 14, 2004 by SlimShady
Dalarn Posted December 14, 2004 Author Posted December 14, 2004 (edited) ...a... Edited December 20, 2004 by Dalarn
kanumi Posted December 14, 2004 Posted December 14, 2004 On my systems i have mapped *.vbs to notepad, but an FTYPE-line for VBSFile also exists. But starting via shell command always opens *.vbs files with notepad. So the only safe way to start a vbs script seems to be running it directly with either cscript.exe or wscript.exe. e.g. > cscript script.vbs
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now