David Candy said:
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionEx
plorer
maximizeapps=3D1 as a dword
It will have wierd consequences.
--=20
----------------------------------------------------------
http://www.uscricket.com
> > Use special shortcuts to always open them, and
rightclick the
> > shortcut,=20
> > Properties, and set the drop box for that to open
Maxed.
> >=20
> > --=20
> >=20
> > Mark L. Ferguson (NOT an MS-MVP)
> > marfers notes for windows xp=20
> >
http://www.geocities.com/marfer_mvp/chatNotes.htm
> > ..
> > "je1058" <
[email protected]>
wrote in message=20
> > > > > How do I set XP so that ALL windows I open
are maximized,
> > ALL of the
> > > time? Currently, they open in the last
"sized" mode I
> > dragged them
> > > to the last time I used it, which is very
hard to manage.
> > >
> > > --=20
> > >
http://www.WindowsForumz.com/ This article
was posted by author's =
request
> > > Articles individually checked for
conformance to usenet
> > standards
> > > Topic URL:=20
> > > =
http://www.WindowsForumz.com/Help---Support-Maximize-windows-ftopict24218=
0.html
> > > Visit Topic URL to contact author (reg.
req'd). Report
> > abuse:=20
> > >
http://www.WindowsForumz.com/eform.php?p=3D736028
internet =
using
Mark - Thanks for your reply! I tried to copy what you sent and kept
getting errors. I got most of them soved but I’m stuck on line 8,
number 133 with "cannot use parantheses when calling a sub" Code:
800A0414
Here’s what I got after my editing:
var vbOKCancel = 1
var vbInformation = 64
var vbCancel = 2
var L_Welcome_MsgBox_Message_Text = "This script puts a maximize item
on the IE right click menu of a link."
var L_Welcome_MsgBox_Title_Text = "Link Max Size IE"
Welcome()
var WSHShell = WScript.CreateObject("WScript.Shell")
WSHShell.RegWrite("HKEY_CURRENT_USER\\Software\\Microsoft\\Inte
rnetExplorer\\MenuExt\\Link
Max Size IE\\", "file://c:\\MaxLink.htm")
WSHShell.RegWrite("HKEY_CURRENT_USER\\Software\\Microsoft\\Inte
rnetExplorer\\MenuExt\\Link
Max Size IE\\Contexts", 0x20, "REG_DWORD")
var fso = WScript.CreateObject("Scripting.FileSystemObject")
var f = fso.OpenTextFile("c:\\MaxLink.htm", 2, true)
f.WriteLine("<SCRIPT LANGUAGE=’JScript’ >")
f.WriteLine("var
hWin=open(’javascript:window.resizeTo(screen.width,screen.height);wind
ow.moveTo(0,0)’);");
f.WriteLine("hWin.navigate(external.menuArguments.event.srcElement.hr
ef);");
f.WriteLine("</SCRIPT>")
f.Close()
function Welcome() {
var WSHShell = WScript.CreateObject("WScript.Shell")
var intDoIt
intDoIt = WSHShell.Popup(L_Welcome_MsgBox_Message_Text, 0,
L_Welcome_MsgBox_Title_Text, vbOKCancel + vbInformation )
if (intDoIt == vbCancel) {
WScript.Quit()
}
}
Please advise if this looks correct or what I need to do to make this
work.
THANKS!