// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using System.ComponentModel; using System.Management.Automation; namespace Microsoft.PowerShell { /// /// PSUtilityPSSnapIn is a class for facilitating registry /// of necessary information for PowerShell utility PSSnapin. /// [RunInstaller(true)] public sealed class PSUtilityPSSnapIn : PSSnapIn { /// /// Create an instance of this class. /// public PSUtilityPSSnapIn() : base() { } /// /// Get name of this PSSnapin. /// public override string Name { get { return RegistryStrings.UtilityMshSnapinName; } } /// /// Get the default vendor string for this PSSnapin. /// 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 "UtilityMshSnapInResources,Vendor"; } } /// /// Get the default description string for this PSSnapin. /// public override string Description { get { return "This PSSnapIn contains utility cmdlets used to manipulate data."; } } /// /// Get resource information for description. This is a string of format: resourceBaseName,resourceName. /// public override string DescriptionResource { get { return "UtilityMshSnapInResources,Description"; } } } }