Ask Experts Questions for FREE Help !
Ask
    vijay2005in's Avatar
    vijay2005in Posts: 3, Reputation: 1
    New Member
     
    #1

    Apr 1, 2008, 04:25 AM
    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
    chuckhole's Avatar
    chuckhole Posts: 850, Reputation: 45
    Senior Member
     
    #2

    Apr 1, 2008, 11:49 AM
    Use Wireshark. It is a free Network Protocol Analyzer.

    http://www.wireshark.org
    vijay2005in's Avatar
    vijay2005in Posts: 3, Reputation: 1
    New Member
     
    #3

    Apr 16, 2008, 02:21 AM
    I want to create welcome logon script
    When user logon it should give time & welcome department
    chuckhole's Avatar
    chuckhole Posts: 850, Reputation: 45
    Senior Member
     
    #4

    Apr 16, 2008, 12:12 PM
    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

Not your question? Ask your question View similar questions

 

Question Tools Search this Question
Search this Question:

Advanced Search

Add your answer here.


Check out some similar questions!

HOw to identify which PC in the network is broadcasting [ 5 Answers ]

Dear all, How to identify which computer in the network is broadcasting?what r the reasons that PC strats broadcasting in the network... please reply n help the needful

Does the B.B.C have a monopoly on radio broadcasting in britain ? [ 1 Answers ]

Does the B.B.C have a monopoly on radio broadcasting in britain ?

Specialized broadcasting [ 1 Answers ]

I want to know why specialized broadcasting emerged I want to know also its objectives and goals


View more questions Search