Logo
programming4us
programming4us
programming4us
programming4us
Home
programming4us
XP
programming4us
Windows Vista
programming4us
Windows 7
programming4us
Windows Azure
programming4us
Windows Server
programming4us
Windows Phone
 
programming4us
Windows 7

Forwarding Events (part 2) - How to Troubleshoot Event Forwarding & How to Configure Event Forwarding in Workgroup Environments

- How To Install Windows Server 2012 On VirtualBox
- How To Bypass Torrent Connection Blocking By Your ISP
- How To Install Actual Facebook App On Kindle Fire
8/3/2011 11:34:51 AM

3. How to Configure Event Forwarding in Workgroup Environments

Typically, event forwarding is required only in large environments that use AD DS domains. However, you can also configure event forwarding in workgroup environments. The process is very similar to that used in AD DS environments, with the following exceptions:

  • You must add a Windows Firewall exception for Remote Event Log Management on each forwarding computer.

  • You must add an account with administrator privileges to the Event Log Readers local group on each forwarding computer. You must specify this account in the Configure Advanced Subscription Settings dialog box when creating a subscription on the collector computer.

  • On each collecting computer, run the following command to allow the forwarding computers to use NTLM authentication: winrm set winrm/config/client @{TrustedHosts="<forwarding_computers>"}.

    Provide a comma-separated list of forwarding computers for the <forwarding computers> value in the previous example. Alternatively, you can provide a wildcard, such as msft*.


Tip:

For the exam, remember that you must configure the TrustedHosts parameter on the collecting computer, not the forwarding computer. This is counterintuitive and might be hard to remember.

4. How to Troubleshoot Event Forwarding

If event forwarding doesn't seem to function properly, follow these steps to troubleshoot the problem:

  1. Verify that you have waited long enough for the event to be forwarded. Forwarding events using the Normal setting can take up to 15 minutes. The delay might be longer if either the forwarding or the collection computer has restarted recently because the Windows Remote Management service is set to start automatically, but with a delay so that it doesn't affect startup performance. The 15-minute counter doesn't start until after the Windows Remote Management service has started.

  2. Check the Applications And Services Logs\Microsoft\Windows\Eventlog-ForwardPlugin\Operational event log and verify that the subscription was created successfully. Event ID 100 indicates a new subscription, whereas Event ID 103 indicates a subscription has been unsubscribed.

  3. Check the Security event log to verify that the forwarding and collecting computers are authenticating correctly.

  4. Verify that the subscription is Active. On the collecting computer, browse to Event Viewer\Subscriptions. The subscription status should be Active. If it is not, right-click the subscription and then click Runtime Status. Event Viewer displays the Subscription Runtime Status dialog box with an error code.

  5. Verify that the forwarding computer has the Windows Remote Management listener properly configured. From an elevated command prompt, run the following command: winrm enumerate winrm/config/Listener.

    If the Windows Remote Management listener isn't configured, there is no output. If the Windows Remote Management listener is configured properly for HTTP, the output resembles the following:

    Listener
    Address = *
    Transport = HTTP
    Port = 80
    Hostname
    Enabled = true
    URLPrefix = wsman
    CertificateThumbprint
    ListeningOn = 127.0.0.1, 192.168.1.214, ::1, fe80::100:7f:ffe%9,
    fe80::5efe:192.168.1.214%10

    If the Windows Remote Management listener is configured properly for HTTPS, the output resembles the following (note that the host name must match the name the event collector uses to identify the computer):

    Listener
    Address = *
    Transport = HTTPS
    Port = 443
    Hostname = win7.nwtraders.msft
    Enabled = true
    URLPrefix = wsman
    CertificateThumbprint = 52 31 db a8 45 50 1f 29 d9 3e 16 f0 da 82 ae
    94 18 8f 61 5e
    ListeningOn = 127.0.0.1, 192.168.1.214, ::1, fe80::100:7f:ffe%9,
    fe80::5efe:192.168.1.214%10

  6. Verify that the collecting computer can connect to Windows Remote Management on the forwarding computer. From an elevated command prompt on the collecting computer, run the following command: winrm id -remote:<computer_name>.<domain_name>.

    For example, if the forwarding computer is named win7.nwtraders.msft, you would run the following command: winrm id -remote:win7.nwtraders.msft.

    The result would be as follows:

    IdentifyResponse
    ProtocolVersion = http://schemas.dmtf.org/wbem/wsman/1/wsman.xsd
    ProductVender = Microsoft Corporation
    ProductVersion = OS: 6.0.6000 SP: 0.0 Stack: 1.0

    If you receive the message "WS-Management could not connect to the specified destination," verify that the Windows Remote Management service is started on the forwarding computer and that no firewall is blocking connections between the two computers.

  7. Verify that the user account you configured the subscription to use has privileges on the forwarding computer. If necessary, enable failure security auditing on the remote computer , wait for events to be forwarded, and then examine the Security event log for logon failures. In addition, you can configure the subscription temporarily to use a Domain Admin account—if the subscription works with the Domain Admin account, the source of your problem is definitely related to authentication. Troubleshoot the authentication problem and reconfigure the subscription to use the original user account.

  8. If the subscription is configured to use Machine Account authentication, verify that the collecting computer's account is a member of the forwarding computer's Event Log Readers local group. If the subscription is configured to use a different user account, that account must be in the forwarding computer's Event Log Readers local group.

  9. Verify that the following services are started on the forwarding computer:

    • Windows Remote Management (WS-Management)

    • Windows Event Collector

  10. Verify that the Windows Event Collector service is started on the collecting computer.

  11. Verify Windows Firewall settings on the forwarding computer as follows:

    • Verify that the Windows Remote Management (HTTP-In) firewall exception is enabled.

    • If you are using HTTPS instead of HTTP, verify that you have created and enabled a custom firewall exception for TCP port 443.

    • Verify that the forwarding computer and the collecting computer are both connected to Private or Domain networks, rather than to Public networks. To verify the network profile, right-click the network icon in the system tray and then click Open Network And Sharing Center. In the Network And Sharing Center, the profile type appears after the network name. If it shows Public Network, click Customize and change the profile type to Work Network, which uses the private network profile.

  12. In addition to the forwarding computer, verify that the Windows Remote Management (HTTP-In) firewall exception is enabled on the collecting computer.

  13. Verify that a network firewall is not blocking traffic by testing connectivity. Because the forwarding computer must have HTTP (and possibly HTTPS) available, you can attempt to connect to it from the collecting computer by using Windows Internet Explorer—simply type http://computername (or https://computername if you are using HTTPS) in the Address bar. If the firewall on the forwarding computer is configured correctly, you receive an HTTP 404 error and Internet Explorer displays the message, "The webpage cannot be found." If Internet Explorer displays the message, "Internet Explorer cannot display the webpage," the firewall exception on the forwarding computer has not been enabled.

  14. Verify that the event query is valid by performing these steps:

    1. View the subscription properties, and click Select Events.

    2. Select the XML tab, select the contents of the query, and press Ctrl+C to copy it to the Clipboard.

    3. Open a second instance of Event Viewer. Right-click Event Viewer, and then click Connect To Another Computer. Select the forwarding computer, and then click OK.

    4. Right-click Custom Views, and then click Create Custom View.

    5. In the Create Custom View dialog box, select the XML tab. Select the Edit Query Manually check box, and click Yes when prompted.

    6. Click the query box and press Ctrl+V to paste the query. Then click OK.

    7. The new custom view appears and shows the matching events. If any events have appeared since you created the event forwarder, they should have been forwarded. If there are no new events, the problem is with your forwarding criteria. Try creating a custom view that matches the events that you want to forward and then importing that into a new subscription.

4.1. PRACTICE: Forward Events Between Computers
4.1.1. PRACTICE: Forward Events Between Computers

In this practice, you configure event forwarding between two computers using the default settings.

EXERCISE 1 Configuring a Computer to Collect Events

In this exercise, you configure a computer to collect events.

  1. Log on to the computer running Windows 7 that you want to use to collect events using a domain account with administrative privileges.

  2. Open an elevated command prompt by clicking Start, typing cmd, and pressing Ctrl+Shift+Enter.

  3. At the command prompt, run the following command to configure the Windows Event Collector service:

    wecutil qc

  4. When prompted to change the service startup mode to Delay-Start, type Y, and then press Enter.

EXERCISE 2 Configuring a Computer to Forward Events

In this exercise, you configure a computer running Windows 7 to forward events to the collecting computer. To complete this exercise, you must have completed Exercise 1.

  1. Log on to the computer running Windows 7 that you want to use to forward events using a domain account with administrative privileges.

  2. Open an elevated command prompt by clicking Start, typing cmd, and pressing Ctrl+Shift+Enter.

  3. At the command prompt, run the following command to configure the Windows Remote Management service: winrm quickconfig.

  4. When prompted to change the service startup mode, type Y, and then press Enter.

  5. When prompted to create the WinRM listener and enable the firewall exception, type Y and then press Enter.

  6. Verify that you have updated the Windows Firewall configuration by following these steps:

    1. Click Start and then click Control Panel.

    2. Click the System And Security link.

    3. Click the Windows Firewall link.

    4. Click the Advanced Settings link.

    5. Select the Inbound Rules node.

    6. In the Details pane, verify that the Windows Remote Management (HTTP-In) exception is enabled for the Domain and Private profiles.

  7. Verify that the Windows Remote Management service is configured to start automatically by following these steps:

    1. Click Start, type services.msc, and then press Enter.

    2. In the Services console, select the Windows Remote Management (WS-Management) service. Verify that it is started and that the Startup Type is set to Automatic (Delayed Start).

  8. Now you need to grant the collecting computer permission to read this computer's event log. If you skipped this step, you would need to configure the subscription to use an administrative user account. To grant access to the collecting computer account, perform these steps:

    1. Click Start, right-click Computer, and then click Manage.

    2. Under System Tools, expand Local Users And Groups. Then, select Groups.

    3. Double-click Event Log Readers.

    4. In the Event Log Readers Properties dialog box, click Add.

    5. In the Select Users, Computers, Service Accounts, Or Groups dialog box, click Object Types. By default, it searches only Users and Groups. However, we need to add the collecting computer account. Select the Computers check box and clear the Groups, Users, and Service Accounts check boxes. Click OK.

    6. In the Select Users, Computers, Or Groups dialog box, type the name of the collecting computer. Then, click OK.

    7. Click OK again to close the Event Log Readers Properties dialog box.

EXERCISE 3 Configuring an Event Subscription

In this exercise, you create an event subscription to gather events from the forwarding computer. To complete this exercise, you must have completed Exercises 1 and 2.

  1. Log on to the computer running Windows 7 that you want to use to collect events using a domain account with administrative privileges.

  2. Click Start, right-click Computer, and then click Manage.

  3. In the Computer Management console, expand System Tools, expand Event Viewer, right-click Subscriptions, and then click Create Subscription.

  4. In the Event Viewer dialog box, click Yes to configure the Windows Event Collector service (if prompted).

    The Subscription Properties dialog box appears.

  5. In the Subscription Name box, type Windows Defender Warnings And Errors.

  6. Click Select Computers. In the Computers dialog box, click Add Domain Computers. Type the name of the computer that will be forwarding events, and then click OK. In the Computers dialog box, click Test to verify that you can connect to the forwarding computer. Click OK twice.

  7. Click Select Events. In the Query Filter dialog box, select the Error, Critical, Warning, and Information check boxes. Click By Source. Then, click the Event Sources list and select Windows Defender (as shown in Figure 4). Click OK.

    Figure 4. Configuring the Query Filter to forward important Windows Defender events

  8. Click Advanced to open the Advanced Subscription Settings dialog box. Note that it is configured to use the Machine Account by default. This works because we have added this computer's domain account to the forwarding computer's Event Log Readers local group. Also, note that the subscription is configured by default to use Normal Event Delivery Optimization using the HTTP protocol. Click OK.

  9. In the Subscription Properties dialog box, click OK.

  10. Next, generate a Windows Defender event on the forwarding computer by following these steps:

    1. Log on to the forwarding computer.

    2. Click Start and type Defender. On the Start menu, click Scan For Spyware And Other Potentially Unwanted Software.

      Windows Defender scans the computer and adds an event to the event log.

  11. While still using the forwarding computer, open Event Viewer and check the Applications And Services Logs\Microsoft\Windows\Windows Defender\Operational log. You should see several Informational events with a source of Windows Defender.

  12. Using the collecting computer, select the Forwarded Events event log. If you don't see the Windows Defender event immediately, wait a few minutes—it might take up to 15 minutes for the event to appear.

Other -----------------
- Visual Basic 2010 : Platform Invokes and Interoperability with the COM Architecture - P/Invokes and Unmanaged Code
- Microsoft Visio 2010 : Changing Shape Data Attributes
- Microsoft Visio 2010 : Viewing Shape Data Attributes
- Microsoft Excel 2010 : Building More Powerful Worksheets - Summarizing Data Using Subtotals & Summarizing Data Using Functions
- Microsoft Excel 2010 : Building More Powerful Worksheets - Using Lookup and Reference Functions & Using Text Functions
- Microsoft Excel 2010 : Building More Powerful Worksheets - Using Solver
- Microsoft Visio 2010 : Editing Shape Data
- Microsoft Visio 2010 : Viewing Shape Data
- Managing Disks : Understanding RAID & Using Disk Maintenance Tools
- Managing Disks : Managing Data Encryption with EFS
 
 
Top 10
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Finding containers and lists in Visio (part 2) - Wireframes,Legends
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Finding containers and lists in Visio (part 1) - Swimlanes
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Formatting and sizing lists
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Adding shapes to lists
- Microsoft Visio 2013 : Adding Structure to Your Diagrams - Sizing containers
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 3) - The Other Properties of a Control
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 2) - The Data Properties of a Control
- Microsoft Access 2010 : Control Properties and Why to Use Them (part 1) - The Format Properties of a Control
- Microsoft Access 2010 : Form Properties and Why Should You Use Them - Working with the Properties Window
- Microsoft Visio 2013 : Using the Organization Chart Wizard with new data
- First look: Apple Watch

- 3 Tips for Maintaining Your Cell Phone Battery (part 1)

- 3 Tips for Maintaining Your Cell Phone Battery (part 2)
programming4us programming4us
Popular tags
Microsoft Access Microsoft Excel Microsoft OneNote Microsoft PowerPoint Microsoft Project Microsoft Visio Microsoft Word Active Directory Biztalk Exchange Server Microsoft LynC Server Microsoft Dynamic Sharepoint Sql Server Windows Server 2008 Windows Server 2012 Windows 7 Windows 8 windows Phone 7 windows Phone 8
programming4us programming4us
 
programming4us
Natural Miscarriage
programming4us
Windows Vista
programming4us
Windows 7
programming4us
Windows Azure
programming4us
Windows Server
programming4us
Game Trailer