Ask Me Help Desk

Ask Me Help Desk (https://www.askmehelpdesk.com/forum.php)
-   Networking (https://www.askmehelpdesk.com/forumdisplay.php?f=76)
-   -   Broadcasting (https://www.askmehelpdesk.com/showthread.php?t=201023)

  • Apr 1, 2008, 04:25 AM
    vijay2005in
    Broadcasting
    How should I identify bradcast in my network due to virus I am having 100 PC in my network I am using os windows xp,windows98,windows 2000 guide me for free tools
  • Apr 1, 2008, 11:49 AM
    chuckhole
    Use Wireshark. It is a free Network Protocol Analyzer.

    http://www.wireshark.org
  • Apr 16, 2008, 02:21 AM
    vijay2005in
    I want to create welcome logon script
    When user logon it should give time & welcome department
  • Apr 16, 2008, 12:12 PM
    chuckhole
    Here it is for a VBScript logon script. It uses the Voice API to speak to you or you can change the script to use a message popup instead. I reads the Active Directory user information and gets the Given Name only to create a personalized greeting. For the full name, you would have to add something like:
    strFullName = CurrentUser.GivenName & " " & CurrentUser.sn

    Here is the script below:

    Set ADSysInfo = CreateObject("ADSystemInfo")
    Set CurrentUser = GetObject("LDAP://" & ADSysInfo.UserName)
    strGivenName = CurrentUser.givenName
    strDepartment = CurrentUser.Department

    VoiceGreeting

    Sub VoiceGreeting

    Dim HourNow, Greeting
    HourNow = Hour(Now)
    If HourNow >5 And HourNow <12 Then
    Greeting = "Good Morning "
    Elseif HourNow >12 And HourNow <16 Then
    Greeting = "Good Afternoon "
    Else
    Greeting = "Good Evening "
    End If

    Dim oVo
    Set oVo = Wscript.CreateObject("SAPI.SpVoice")
    if strDepartment = "" then
    oVo.speak Greeting & strGivenName & ". Tell the Help Desk to fill in the department name in your user account and get to work."
    else
    oVo.speak Greeting & strGivenName & " of the " & strDepartment & " department. Now get to work."
    end if

    End Sub

  • All times are GMT -7. The time now is 06:33 AM.