You don't need a C program if you can be sure that Internet Explorer is
installed; a bit of script will do it:

Set oIE= CreateObject("InternetExplorer.Application")
Do While (oIE.Busy)
    Wscript.Sleep 250
Loop
oIE.visible=true
oIE.ToolBar = false
oIE.StatusBar = false
oIE.Resizable = false
oIE.Navigate ("http://website/webpage.htm";)
Do While (oIE.Busy)
    Wscript.Sleep 250
Loop
wscript.sleep 5000
oIe.quit 

This will put the page up for 5 seconds (wscript.sleep 5000) - adjust
this to whatver you need.

Steve

-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Myrick, Todd
(NIH/CIT)
Sent: 8 November 2004 11:59
To: [EMAIL PROTECTED]
Subject: RE: [ActiveDir] How to Enable a Warning Message During Windows
Lo gon Welcome

We had a similar situation in my organization where we when the user
presses
Control+Alt+Del They get the GPO that sets the Legal Notice, but we also
needed the notice to pop up after the user logged in.  Our solution was
to use the GPO, plus a small C program that created a window with the
text after the successful login, and timed out after 15 seconds.

I also think Autoprof's tool has the ability to create the text window
once a user log's in as well.  No extra coding required.

Todd Myrick

-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Sunday, November 07, 2004 7:08 AM
To: [EMAIL PROTECTED]
Subject: Re: [ActiveDir] How to Enable a Warning Message During Windows
Lo gon Welcome

Hi,

One way of doing it (which is a little dodgey) is to create your own ADM
file which does the registry hack for you. You still can't type in the
<cr><lf> but you can create a default entry with the required <cr><lf>
in place (see beleow). Seems to work OK. You can still edit the text in
the field, you just can't add additional texts

CLASS MACHINE

CATEGORY "Legal notice"
 POLICY Notice
  KEYNAME SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system

  PART "Caption" EDITTEXT
   KEYNAME SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system
   VALUENAME legalnoticecaption
   DEFAULT header
  END PART ;Caption

  PART "Text" EDITTEXT
   KEYNAME SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system
   VALUENAME legalnoticetext
   DEFAULT "line 1
line 2
line 3"
  END PART ;Text
 END POLICY ;Notice

END CATEGORY ;Legal notice


 Alan Cuthbertson


Policy Management Software:-
http://www.sysprosoft.com/index.php?ref=activedir&f=pol_summary.shtml
ADM Template Editor:-
http://www.sysprosoft.com/index.php?ref=activedir&f=adm_summary.shtml
Policy Log Reporter(Free)
http://www.sysprosoft.com/index.php?ref=activedir&f=policyreporter.shtml


----- Original Message -----
From: "Brian Desmond" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, November 06, 2004 10:49 AM
Subject: RE: [ActiveDir] How to Enable a Warning Message During Windows
Lo gon Welcome


You may be able to put a couple of "\n\n" escapes in at the end of a
paragraph to create a new one. Never tried it.

Thanks.

--Brian Desmond
[EMAIL PROTECTED]
Payton on the web! www.wpcp.org

v - 773.534.0034 x135
f - 773.534.8101


> -----Original Message-----
> From: [EMAIL PROTECTED] [mailto:ActiveDir-
> [EMAIL PROTECTED] On Behalf Of Christine Allen
> Sent: Friday, November 05, 2004 4:19 PM
> To: '[EMAIL PROTECTED]'
> Subject: RE: [ActiveDir] How to Enable a Warning Message During
Windows Lo
> gon Welcome
>
> Thanks It's working.  However, the powers that be would like it to be
more
> ecstatically pleasing.  Is there a way to add paragraph returns??
When I
> do
> the text does not show up.
>
> -Christine
>
> Christine N. Allen
> Citrix/Windows 2000 Engineer
> BMC Healthnet Plan
> One Design Center Place
> Boston, MA 02210
>
> Work:  617-748-6034
> Cell:  617-290-4407
>
>
>
>
> -----Original Message-----
> From: Lou Vega [mailto:[EMAIL PROTECTED]
> Sent: Friday, November 05, 2004 1:44 PM
> To: [EMAIL PROTECTED]
> Subject: RE: [ActiveDir] How to Enable a Warning Message During
Windows
> Lo gon Welcome
>
>
> I'm not aware of a length limit...I know we use a fairly verbose
message
> for
> our system to the tune of 1185 characters in the logon message.
> r/
> Lou
>
>
> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Christine
Allen
> Sent: Friday, November 05, 2004 12:16 PM
> To: 'Tomasz Onyszko '; '[EMAIL PROTECTED] '
> Subject: RE: [ActiveDir] How to Enable a Warning Message During
Windows Lo
> gon Welcome
>
>
> anyone have any idea if there is a character limit for the text?
>
>
>
> List info   : http://www.activedir.org/mail_list.htm
> List FAQ    : http://www.activedir.org/list_faq.htm
> List archive:
http://www.mail-archive.com/activedir%40mail.activedir.org/
> List info   : http://www.activedir.org/mail_list.htm
> List FAQ    : http://www.activedir.org/list_faq.htm
> List archive:
http://www.mail-archive.com/activedir%40mail.activedir.org/
List info   : http://www.activedir.org/mail_list.htm
List FAQ    : http://www.activedir.org/list_faq.htm
List archive:
http://www.mail-archive.com/activedir%40mail.activedir.org/


List info   : http://www.activedir.org/mail_list.htm
List FAQ    : http://www.activedir.org/list_faq.htm
List archive:
http://www.mail-archive.com/activedir%40mail.activedir.org/
List info   : http://www.activedir.org/mail_list.htm
List FAQ    : http://www.activedir.org/list_faq.htm
List archive:
http://www.mail-archive.com/activedir%40mail.activedir.org/
List info   : http://www.activedir.org/mail_list.htm
List FAQ    : http://www.activedir.org/list_faq.htm
List archive: http://www.mail-archive.com/activedir%40mail.activedir.org/

Reply via email to