I wish to create custom actions to use within my LEM rules. For example, Based on a certain event; I would like to copy a specific file (related to that event from one location to another).
There's not, but you could put that in as a feature request.
Util they add this feature you would use powershell to create a custom actions by watching a text file, group, email, popup message or even SNMP.
Basic command to copy file listed in a text file, would need to expand it update the text file after the copy is complete:
Get-Content myfile.txt|Foreach-Object{copy-item -path $_.FullName -destination <code>"path_to_destination"}
Tony
This is an interesting idea - you can use LEM to "append text to file", so you could create a text file with the inputs and create a service/task that checks the file for new data and "do something" externally.
There is a Thwack FR for running scripts from LEM, too, so be sure to vote -