0
votes
1answer
165 views

Restarting PC's and writing to the event log with a custom message

I have written a script in PowerShell that will remotely restart a list of PC's using the 'Restart-Computer' command. Is there a way of adding a custom message to the systems event log, to explain ...
0
votes
1answer
283 views

How to clear “Applications and Services Logs” using Powershell?

Anybody has an idea how to clear "Applications and Services Logs" using Powershell? I can easily clear the Windows Logs using Clear-EventLog, but I can't get to clear a subfolder under "Applications ...
0
votes
0answers
189 views

Powershell command to read EventLog

I am reading a event log using a Powershell command like the 1 below: get-winevent -Path "C:\Test.evtx" -oldest | convertto-xml -as Stream > "C:\Test.xml" As you can see, I am storing the result ...
0
votes
1answer
64 views

Unique identifier for an event in Event Log

I have a Windows Event Log file (.evt/.evtx) and I want to select a particular event from the Event Log using power shell. I see cmdlets like $provider = Get-WinEvent -listprovider $EventSource ...
2
votes
1answer
2k views

Use PowerShell to filter Event Logs and export to CSV

I have the following command which gives the information I need but I need to filter it a little further: Get-EventLog -LogName Security -ErrorAction SilentlyContinue | Select TimeWritten, ...
0
votes
1answer
263 views

using powershell to set an event logs “Maximum Size” action

When viewing an Event Logs properties (in Server 2008) you can set three actions for what to happen when the maximum event log size has been reached: Overwrite events as needed Archive the log when ...
0
votes
3answers
1k views

powershell: get-winevent has no messsage data?

When I run the script below to retrieve log files, the get-winevent "message" field is blank but has data if I run get-eventlog. Any ideas why? #has message data Get-Eventlog -LogName application ...
1
vote
1answer
2k views

PowerShell: Monitor multiple server event logs every minute

I am working on a PowerShell script that will monitor a list of servers every minute and trigger on a specified event. While my script isn't completed, this is what I have so far; $TimeAgo = ...
1
vote
2answers
598 views

PowerShell version 1.0 - Write to the event log

We have a client with PowerShell 1.0. I know in PowerShell 2.0, I have the Write-EventLog commandlet. However, this doesn't appear in PowerShell 1.0. I want my script to log events to the event log, ...
0
votes
2answers
154 views

powershell 2.0 unable to get Internet Explorer logs

When I try to run cmd get-eventlog -list on win2003 std in powershell V2.0. It gives me the following output Max(K) Retain OverflowAction Entries Log ------ ------ -------------- ...
0
votes
1answer
459 views

How can i filter Windows Events retrieve with an XPATH where a certain value is a substring of the value?

Windows Events have an ability to filter by XPATH (which is a fast search). I have sucessfully using the PowerSHell Cmdlet Get-WinEvent filtered where a specific value is a specific value as shown ...
1
vote
1answer
724 views

Powershell: filtering event logs

Ive written a small script to retreive event logs from application for the last 10 days but i receive the error. Any ideas why the error appear? Where-Object : Cannot bind parameter ...
0
votes
1answer
2k views

Powershell: Cannot convert 'System.Object[]' to the type 'System.String'

When I run the following code i receive the message "cannot convert 'System.Object[]' to the type 'System.String'". How do i pass the event log list back to get-eventlog? $EventLogList = ...
0
votes
1answer
1k views

PS using Get-WinEvent with FilterXPath and datetime variables?

I'm grabbing a handful of events from an event log in chronological order don't want to pipe to Where want to use get-winevent After I get the Event1, I need to get the 1st instance of another ...
3
votes
1answer
610 views

search event viewer server 03 and 08 r2

Is there a way to search the event viewer in Windows Server 2003 and Windows Server 2008 r2 for a particular printer name using powershell or another cmd or program? From time to time I have to ...
1
vote
2answers
336 views

Filter IDs of the last “boot event” from Event Log in PowerShell

I need to filter IDs of the last "boot event" from Event Log I get it by running psloglist -accepteula -n 1 -s -o "Microsoft-Windows-Kernel-General" -i 12 -t ; that I redirect to a file and need ...
1
vote
2answers
2k views

How to get event message using Powershel?

$FilterXML = '<QueryList> <Query Id="0" Path="System"> <Select Path="System">*[System[Provider[@Name="Service Control Manager"] and ...
2
votes
2answers
364 views

Powershell Scheduled Tasks conflicts?

I have scheduled two powershell scripts as tasks to run at 00:00. This morning I checked the event log and found that one of the scripts failed with the following exception: Failure. The error ...
1
vote
1answer
209 views

How to pull a range of failed services from a remote server after a reboot

Caveat: Without spiking the cpu while a Get-WmiObject call parses the whole event log to match my specified filter. Situation: I am working on a script that remotely runs some checks, then reboots a ...
2
votes
1answer
565 views

How to make powershell wait on event log entry?

I need to create a component in a larger pipeline that starts vpn service and waits for a connection to be established before proceeding. I'd like to do this with Powershell if possible. I imagine the ...
2
votes
2answers
3k views

Powershell get-eventlog message column is too short

When using powershell to retrieve info about events Message column gets trimmed and is too short: Index Time Type Source EventID Message ----- ---- ---- ------ ...
2
votes
1answer
2k views

.NET CreateEventSource issue

I am using Windows Server 2003 x64 + VSTS 2008 + .Net 3.5 + C#, the API EventLog.CreateEventSource has two parameters, source and logName. I have two questions, How to call function ...
2
votes
5answers
752 views

How do I get PowerShell to grab a logfile when it overflows?

I am using Powershell PSeventing plugin but have had no luck so far finding an event that triggers when an event log is full. I am looking everywhere MSDN .net events I know it has to do with maximum ...