I wrote a logon script using a *.KIX file with standard logon script type of commands to install Microsoft Security Bulletin onto all PCs in our domain. When the logon script is executed, how can I display a dialog message on the user's desktop advising not to interrupt the installation process? I tried using display, writeline, and echo without success...

Here is a segment that I wrote already to install the MS Security bulletin...

;MS03-026 Security Bullet
if exist ("c:\winnt\ms03026changes.txt")
goto skipchanges
endif

open(1,"c:\winnt\ms03026changes.txt",5)
writeline(1,"MS03-026 Microsoft Technical Bulletin Being Installed")
close(1)
shell "attrib +r +h c:\winnt\ms03026changes.txt"
shell @lserver+"\netlogon\Windows2000-KB823980-x86-ENU.EXE /u /q"

:skipchanges