README.md
December 5, 2022 ยท View on GitHub
Description
get your vbscript console applications running under cscript using the stdin & stdout objects for input running full-screen. and get the fore and background collor set to the color you like
More Info
| Submitted On | |
| By | DVM |
| Level | Beginner |
| User Rating | 5.0 (10 globes from 2 users) |
| Compatibility | VB Script |
| Category | Registry |
| World | Visual Basic |
| Archive File |
Source Code
option explicit
dim oShell: set oShell = CreateObject("WScript.Shell")
' asume it started tweaked
dim bTweaked: bTweaked = true
' is it tweaked?
if wscript.arguments.count = 0 then
bTweaked = false
elseif not wscript.arguments(0) = "tweaked" then
bTweaked = false
end if
' if not, let's tweak it
if not bTweaked then
dim kFullScreen, kScreenColors
kFullScreen = oShell.regRead("HKCU\Console\FullScreen")
kScreenColors = oShell.regRead("HKCU\Console\ScreenColors")
oShell.regwrite "HKCU\Console\FullScreen", 1, "REG_DWORD"
oShell.regWrite "HKCU\Console\ScreenColors", 9, "REG_DWORD"
oShell.run "cscript.exe /NoLogo """ & wscript.scriptfullname & """ tweaked"
wscript.sleep 5000
oShell.regwrite "HKCU\Console\FullScreen", kFullScreen, "REG_DWORD"
oShell.regWrite "HKCU\Console\ScreenColors", kScreenColors, "REG_DWORD"
set oShell = nothing
wscript.quit
end if
dim oIn: set oIn = wscript.stdIn
dim oOut: set oOut = wscript.stdOut
oOut.writeLine "press enter to contintue..."
call oIn.readLine