File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 11@ echo off
2+
3+ :: This script will clean the Windows build directory.
4+ :: FORCE SCRIPT TO WORK ON FULL SCREEN MODE
5+ :VBSDynamicBuild
6+
7+ SET TempVBSFile = %temp% \~tmpSendKeysTemp.vbs & :: SET TEMP VBS FILE
8+ IF EXIST " %TempVBSFile% " DEL /F /Q " %TempVBSFile% " & :: IF TEMP VBS FILE EXISTS, DELETE IT
9+
10+ echo Set WshShell = WScript.CreateObject(" WScript.Shell" ) >> " %TempVBSFile% " & :: ECHO SET WSH SHELL
11+ echo Wscript.Sleep 1 >> " %TempVBSFile% " & :: ECHO WSCRIPT SLEEP 1
12+ echo WshShell.SendKeys " {F11}" >> " %TempVBSFile% " & :: ECHO WSH SHELL SEND KEYS F11
13+ echo Wscript.Sleep 1 >> " %TempVBSFile% " & :: ECHO WSCRIPT SLEEP 1
14+
15+ CSCRIPT //nologo " %TempVBSFile% "
16+
217color 0a & :: hacker color (just kidding)
318
419title KARTHIK-V1.0 & :: title is needed cuz of the way the console is displayed
You can’t perform that action at this time.
0 commit comments