// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System; using System.Collections.Generic; using System.ComponentModel; using System.Management.Automation; using System.Text; namespace Microsoft.PowerShell.Commands { /// /// Create the PowerShell snap-in used to register the /// Get-WinEvent cmdlet. Declaring the PSSnapIn class identifies /// this .cs file as a PowerShell snap-in. /// [RunInstaller(true)] public class GetEventPSSnapIn : PSSnapIn { /// /// Create an instance of the GetEventPSSnapIn class. /// public GetEventPSSnapIn() : base() { } /// /// Specify the name of the PowerShell snap-in. /// public override string Name { get { return "Microsoft.Powershell.GetEvent"; } } /// /// Specify the vendor of the PowerShell snap-in. /// public override string Vendor { get { return "Microsoft"; } } /// /// Get resource information for vendor. This is a string of format: resourceBaseName,resourceName. /// public override string VendorResource { get { return "GetEventResources,Vendor"; } } /// /// Specifies the description of the PowerShell snap-in. /// public override string Description { get { return "This PS snap-in contains Get-WinEvent cmdlet used to read Windows event log data and configuration."; } } /// /// Get resource information for description. This is a string of format: resourceBaseName,resourceName. /// public override string DescriptionResource { get { return "GetEventResources,Description"; } } /// /// Get type files to be used for this PSSnapin. /// public override string[] Types { get { return _types; } } private string[] _types = new string[] { "getevent.types.ps1xml" }; /// /// Get format files to be used for this PSSnapin. /// public override string[] Formats { get { return _formats; } } private string[] _formats = new string[] { "Event.format.ps1xml" }; } }