Try this to display Notice.html at logon time for 30 secs. Notice.html is located in the netlogon folder of your domain controllers.

If not exist("@lserver\netlogon\Notice.html")
Return
Endif

Dim $oIE

$oIE = CreateObject("InternetExplorer.Application")

while $oIE.busy
loop

$oIE.Navigate("@lserver\netlogon\Notice.html")

$False = 0
$True = 1

$oIE.height = 400
$oIE.width = 600
$oIE.AddressBar = $False
$oIE.StatusBar = $False
$oIE.ToolBar = $False
$oIE.MenuBar = $False
$oIE.Visible = $True

; Wait for 30 seconds

sleep 30

$oIE.Quit

$oIE = Nothing

Return
_________________________
Bill