|
-
Jul 26th, 2006, 11:39 AM
#1
Thread Starter
New Member
Using HTA in a login script environment
Is this a recommended practise for a logon script environment? I'm considering using an HTA to provide a visual login environment for our users. Currently I use the following:
[Highlight=VB]
strMessage= "Logon task complete ..."
DisplayMsg
Sub DisplayMsg()
' wscript.echo "In DisplayMapping subroutine"
Const OK_BUTTON = 0
Const AUTO_DISMISS = 5
Set objShell = CreateObject("Wscript.Shell")
objShell.Popup strMessage, AUTO_DISMISS, "6th MDG Logon Script", OK_BUTTON
End Sub
Sub DisplayMap()
' wscript.echo "In DisplayMapping subroutine"
Const OK_BUTTON = 0
Const AUTO_DISMISS = 10
Set objShell = CreateObject("Wscript.Shell")
objShell.Popup strMessage, AUTO_DISMISS, "6th MDG Logon Script", OK_BUTTON
End Sub
[Highlight=VB]
Any and all guidance thanked in advance ...
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|