Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@

namespace Microsoft.PowerShell.Commands
{
///
/// <summary>
/// Class that implements the Get-Counter cmdlet.
///
/// </summary>
[Cmdlet(VerbsCommon.Get, "Counter", DefaultParameterSetName = "GetCounterSet", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2109647")]
public sealed class GetCounterCommand : PSCmdlet
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@

namespace Microsoft.PowerShell.Commands
{
///
/// <summary>
/// Class that implements the Get-WinEvent cmdlet.
///
/// </summary>
[Cmdlet(VerbsCommon.Get, "WinEvent", DefaultParameterSetName = "GetLogSet", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096581")]
public sealed class GetWinEventCommand : PSCmdlet
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@

namespace Microsoft.PowerShell.Commands
{
///
/// <summary>
/// Class that implements the New-WinEvent cmdlet.
/// This cmdlet writes a new Etw event using the provider specified in parameter.
///
/// </summary>
[Cmdlet(VerbsCommon.New, "WinEvent", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096808")]
public sealed class NewWinEventCommand : PSCmdlet
{
Expand Down