I want to ultimately set all user's home page with a GPO, to our SharePoint
site, but I want to know what they have now for a home page. If it's
something they use often and it's work related, I'll add that as a link on
the home page of SharePoint.
I could send out a mass email and ask, but I would invariably get questions
and/or comments like: "I don't think I have a home page", or "what is a
home page", or "I don't think I have Internet Explorer" :-)
Thanks
"JohnB" <jbr...@yahoo.com> wrote in message
news:uRKFWmYf...@TK2MSFTNGP05.phx.gbl...
Do you have roving profiles? If not, you will have to process each existing
profile on each workstation.
/Al
This returns the home page on Windows 98/IE 6.
Set WshShell = WScript.CreateObject("WScript.Shell")
s = "HKCU\Software\Microsoft\Internet Explorer\Main\Start Page"
MsgBox WshShell.RegRead(s), 64,"IE home page is... "
--
Todd Vargo
(Post questions to group only. Remove "z" to email personal messages)
"Todd Vargo" <tlv...@sbcglobal.netz> wrote in message
news:#1qEnKff...@TK2MSFTNGP06.phx.gbl...
Good solution, however, it would need to be run by each user, and the msgbox
call changed to something that writes the information to a repository
somewhere.
/Al
It was not intended to be a complete solution.
Just a pointer in the direction OP may want to research.
"Todd Vargo" <tlv...@sbcglobal.netz> wrote in message
news:eBf7px2f...@TK2MSFTNGP05.phx.gbl...
Understood. I made that reply in case the OP did not realize this fact. From
his post it was not clear what kind of script he wanted: one to run in the
logon script, one to run from the startup group, one to run remotely. I
infer from this that he might not have realized there were such options and
what their advantages and shortcomings might be.
/Al
"Todd Vargo" <tlv...@sbcglobal.netz> wrote in message
news:eBf7px2f...@TK2MSFTNGP05.phx.gbl...
No. I am saying this is what I get on Windows 98.
You will have to test it on your OS to verify it returns the home page.
> >> >
> >> > This returns the home page on Windows 98/IE 6.
> >> >
> >> > Set WshShell = WScript.CreateObject("WScript.Shell")
> >> > s = "HKCU\Software\Microsoft\Internet Explorer\Main\Start Page"
> >> > MsgBox WshShell.RegRead(s), 64,"IE home page is... "
--
Set WshShell = WScript.CreateObject("WScript.Shell")
s = "HKEY_USERS\xxxx...\Software\Microsoft\Internet Explorer\Main\Start
Page"
MsgBox WshShell.RegRead(s), 64,"IE home page is... "
--
Crash
"The real question is not whether machines think but whether men do."
~ B. F. Skinner ~