Hi,

Thanx for your comment!

Lonkero I know it's just a stupid sample script, just playing around.

Since the -i switch came i've registered .KiX to open with wKiX32.exe and that switch. Sometimes I want a console. So I've more enteries on that registry key. But i want to control it in the script, console or consoleless.

But I've found out what creates the unwanted console in my wanted consoleless scripts. If i start writing a script, i copy all the SetConsole and SetOption options from a default script template. And it's the SetOption("WrapAtEOL", "ON"), that creates a console just there in a blink of an eye. Solution: take it out there! it's not needed in a consoleless script.

Sample:
code:
$intRC	= SetConsole("Hide")
Sleep 1
$intRC = SetOption("WrapAtEOL", "ON")
Sleep 1
Get $

Groetjes Ryan