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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to start the console in a Full screen ? 1

Status
Not open for further replies.

crackoo

Programmer
Joined
Feb 17, 2011
Messages
132
Location
TN
Hi !
I'm under Windows 7 64 Bits French Version
I want to start the console in a Full screen using this vbscript below but it didn't works for me :(
Please I need your Help !
Thank you !
Code:
dim Ws
Set Ws=CreateObject("WScript.Shell")
Ws.regWrite "HKEY_CURRENT_USER\Console\Fullscreen", "1", "REG_DWORD"
Ws.run "Taskkill /IM Explorer.exe /F", 0 ,True
wscript.sleep 2000
Ws.run "Explorer.exe"
wscript.sleep 2000 
Ws.Run "cmd"
 
Windows 7 does not support full screen mode. Open a command prompt. Press Alt+Enter and you will get a message letting you know that full screen mode is not supported.

I hope that helps.

Regards,

Mark

Check out my scripting solutions at
Work SMARTER not HARDER. The Spider's Parlor's Admin Script Pack is a collection of Administrative scripts designed to make IT Administration easier! Save time, get more work done, get the Admin Script Pack.
 
Thank you ! for your reply !
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top