How to Zoom an Application when Launched
Keywords: runzoom
There is no way to make an app open zoomed with windows alone.
From the command line you can access this program which will
zoom whatever you run for you. Your command line will look
like:
zoom.wbt notepad.exe
Here's the script:
Switch param0
case 0
break
case1
RunZoom(param1, "")
break
case param0
params = " "
For i=2 to param0
params=StrCat(params, param%i%, " ")
Next
RunZoom(param1, params)
break
EndSwitch
Article ID: W13282
Filename: Zoom an App when Launched.txt