Results 1 to 2 of 2

Thread: Using HTA in a login script environment

  1. #1

    Thread Starter
    New Member
    Join Date
    Oct 2005
    Posts
    9

    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 ...

  2. #2

    Thread Starter
    New Member
    Join Date
    Oct 2005
    Posts
    9

    Re: Using HTA in a login script environment

    So, there is no opinion on using an HTA to show your logon progress, eh?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width