Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Below is the output of an event I want to edit but I don't want to see it as it is right now. Yes I can do an output to a CSV file but I can't sort the details out of the description column. I have added after this file what I want it to look like. I can't for the life of me figure out how to start.
What I'd like help on is this. Take a line starting with Type: then anything after it until the next part I want like Event: and I'd like to exclude things like

Description: Microsoft Antimalware has detected malware or other potentially unwanted software. For more information please see the following: http ://go.microsoft.com/fwlink/ linkid=37020&name=Virus:DOS/EICAR_Test_File&threatid=2147519003

which will change from export to export. But I'd like to take Name: and everything after that until the next bit I want.

Description: Microsoft Antimalware has detected malware or other potentially unwanted software. For more information please see the following: http ://go.microsoft.com/fwlink/?linkid=37020&name=Virus:DOS/EICAR_Test_File&threatid=2147519003 Name: Virus:DOS/EICAR_Test_File ID: 2147519003 Severity: Severe Category: Virus Path: file:_C:\MalwareDetection\Virus.txt Detection Origin: Local machine Detection Type: Concrete Detection Source: Real-Time Protection User: DOMAIN\user1 Process Name: C:\WINDOWS\system32\cscript.exe Signature Version: AV: 1.143.1688.0, AS: 1.143.1688.0, NIS: 0.0.0.0 Engine Version: AM: 1.1.9103.0, NIS: 0.0.0.0

As you can see above the column called Description in a CSV file doesn't break down any further and it's elements in this that I need. my scripting skills are like LVL 1 out of LVL 100 .. so I'd appreciate any help anyone might be able to offer.

Below is what my event file looks like right now

Microsoft (R) Windows Script Host Version 5.7
Copyright (C) Microsoft Corporation. All rights reserved.


Listing the events in 'system' log of host 'COMPUTER1'


Type: warning
Event: 1116
Date Time: 2/13/2013 12:00:00 PM
Source: Microsoft Antimalware
ComputerName: COMPUTER1
Category: None
User: N/A
Description: Microsoft Antimalware has detected malware or other potentially unwanted software. For more information please see the following: http ://go.microsoft.com/fwlink/?linkid=37020&name=Virus:DOS/EICAR_Test_File&threatid=2147519003 Name: Virus:DOS/EICAR_Test_File ID: 2147519003 Severity: Severe Category: Virus Path: file:_C:\MalwareDetection\Virus.txt Detection Origin: Local machine Detection Type: Concrete Detection Source: Real-Time Protection User: DOMAIN\user1 Process Name: C:\WINDOWS\system32\cscript.exe Signature Version: AV: 1.143.1688.0, AS: 1.143.1688.0, NIS: 0.0.0.0 Engine Version: AM: 1.1.9103.0, NIS: 0.0.0.0

This is how I'd like it to look. I'll email the event to myself alerting me to a virus detection. Space between some lines would be nice but below at the very least is what I'd like to be able to see... I have tried to decipher the forums and if this or something like this has been done please point me to it I will gladly try and figure it out on my own but I'm over my head here.

Thank you in advance for any help.

Type: warning
Event: 1116
Date Time: 2/13/2013 12:00:00 PM
ComputerName: COMPUTER1
Category: None
User: N/A
Name: Virus:DOS/EICAR_Test_File
ID: 2147519003
Severity: Severe
Category: Virus
Path: file:_C:\MalwareDetection\Virus.txt
Detection Origin: Local machine Detection
Type: Concrete Detection
Source: Real-Time Protection
User: DOMAIN\user1 Process
Name: C:\WINDOWS\system32\cscript.exe

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.