forked from EvotecIT/PSEventViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPSEventViewer.psd1
27 lines (27 loc) · 1.53 KB
/
PSEventViewer.psd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@{
AliasesToExport = 'Write-WinEvent', 'Write-Events'
Author = 'Przemyslaw Klys'
CompanyName = 'Evotec'
CompatiblePSEditions = 'Desktop', 'Core'
Copyright = '(c) 2011 - 2019 Przemyslaw Klys. All rights reserved.'
Description = 'Simple module allowing parsing of event logs. Has its own quirks...'
FunctionsToExport = 'Get-Events', 'Get-EventsFilter', 'Get-EventsInformation', 'Get-EventsSettings', 'Set-EventsSettings', 'Write-Event'
GUID = '5df72a79-cdf6-4add-b38d-bcacf26fb7bc'
ModuleVersion = '1.0.17'
PowerShellVersion = '5.1'
PrivateData = @{
PSData = @{
Tags = 'Events', 'Viewer', 'Windows', 'XML', 'XPATH', 'EVTX'
ProjectUri = 'https://github.com/EvotecIT/PSEventViewer'
ExternalModuleDependencies = 'Microsoft.PowerShell.Utility', 'Microsoft.PowerShell.Diagnostics', 'Microsoft.PowerShell.Management'
IconUri = 'https://evotec.xyz/wp-content/uploads/2018/10/PSEventViewer.png'
}
}
RequiredModules = @{
ModuleVersion = '0.0.144'
ModuleName = 'PSSharedGoods'
Guid = 'ee272aa8-baaa-4edf-9f45-b6d6f7d844fe'
}, 'Microsoft.PowerShell.Utility', 'Microsoft.PowerShell.Diagnostics', 'Microsoft.PowerShell.Management'
RootModule = 'PSEventViewer.psm1'
ScriptsToProcess = 'Enums\PSEventViewer.Keywords.ps1', 'Enums\PSEventViewer.Level.ps1'
}