-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
PSEventViewer.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-Event')
Author = 'Przemyslaw Klys'
CmdletsToExport = @('Find-WinEvent', 'Start-EventWatching', 'Write-WinEvent')
CompanyName = 'Evotec'
CompatiblePSEditions = @('Desktop', 'Core')
Copyright = '(c) 2011 - 2024 Przemyslaw Klys @ Evotec. 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')
GUID = '5df72a79-cdf6-4add-b38d-bcacf26fb7bc'
ModuleVersion = '2.4.4'
PowerShellVersion = '5.1'
PrivateData = @{
PSData = @{
ExternalModuleDependencies = @('Microsoft.PowerShell.Utility', 'Microsoft.PowerShell.Management', 'Microsoft.PowerShell.Diagnostics')
IconUri = 'https://evotec.xyz/wp-content/uploads/2018/10/PSEventViewer.png'
ProjectUri = 'https://github.com/EvotecIT/PSEventViewer'
Tags = @('Events', 'Viewer', 'Windows', 'XML', 'XPATH', 'EVTX')
}
}
RequiredModules = @(@{
Guid = 'ee272aa8-baaa-4edf-9f45-b6d6f7d844fe'
ModuleName = 'PSSharedGoods'
ModuleVersion = '0.0.302'
}, 'Microsoft.PowerShell.Utility', 'Microsoft.PowerShell.Management', 'Microsoft.PowerShell.Diagnostics')
RootModule = 'PSEventViewer.psm1'
}