diff --git a/src/Microsoft.PowerShell.Commands.Diagnostics/GetEventCommand.cs b/src/Microsoft.PowerShell.Commands.Diagnostics/GetEventCommand.cs
index ca1dade3d25..c8abedf860b 100644
--- a/src/Microsoft.PowerShell.Commands.Diagnostics/GetEventCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Diagnostics/GetEventCommand.cs
@@ -24,7 +24,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Class that implements the Get-WinEvent cmdlet.
///
- [Cmdlet(VerbsCommon.Get, "WinEvent", DefaultParameterSetName = "GetLogSet", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=138336")]
+ [Cmdlet(VerbsCommon.Get, "WinEvent", DefaultParameterSetName = "GetLogSet", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096581")]
public sealed class GetWinEventCommand : PSCmdlet
{
///
diff --git a/src/Microsoft.PowerShell.Commands.Diagnostics/NewWinEventCommand.cs b/src/Microsoft.PowerShell.Commands.Diagnostics/NewWinEventCommand.cs
index 3f2bfa4ec41..96682ccc1e0 100644
--- a/src/Microsoft.PowerShell.Commands.Diagnostics/NewWinEventCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Diagnostics/NewWinEventCommand.cs
@@ -19,7 +19,7 @@ namespace Microsoft.PowerShell.Commands
/// Class that implements the New-WinEvent cmdlet.
/// This cmdlet writes a new Etw event using the provider specified in parameter.
///
- [Cmdlet(VerbsCommon.New, "WinEvent", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=217469")]
+ [Cmdlet(VerbsCommon.New, "WinEvent", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096808")]
public sealed class NewWinEventCommand : PSCmdlet
{
private ProviderMetadata _providerMetadata;
diff --git a/src/Microsoft.PowerShell.Commands.Management/commands/management/AddContentCommand.cs b/src/Microsoft.PowerShell.Commands.Management/commands/management/AddContentCommand.cs
index 25377c7a745..a1e15c0248e 100644
--- a/src/Microsoft.PowerShell.Commands.Management/commands/management/AddContentCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Management/commands/management/AddContentCommand.cs
@@ -14,7 +14,7 @@ namespace Microsoft.PowerShell.Commands
/// A command that appends the specified content to the item at the specified path.
///
[Cmdlet(VerbsCommon.Add, "Content", DefaultParameterSetName = "Path", SupportsShouldProcess = true, SupportsTransactions = true,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113278")]
+ HelpUri = "https://go.microsoft.com/fwlink/?linkid=2096489")]
public class AddContentCommand : WriteContentCommandBase
{
#region protected members
diff --git a/src/Microsoft.PowerShell.Commands.Management/commands/management/ClearContentCommand.cs b/src/Microsoft.PowerShell.Commands.Management/commands/management/ClearContentCommand.cs
index b9086b99ba3..3f1a3f237e2 100644
--- a/src/Microsoft.PowerShell.Commands.Management/commands/management/ClearContentCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Management/commands/management/ClearContentCommand.cs
@@ -11,7 +11,7 @@ namespace Microsoft.PowerShell.Commands
/// A command that appends the specified content to the item at the specified path.
///
[Cmdlet(VerbsCommon.Clear, "Content", DefaultParameterSetName = "Path", SupportsShouldProcess = true, SupportsTransactions = true,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113282")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096807")]
public class ClearContentCommand : ContentCommandBase
{
#region Command code
diff --git a/src/Microsoft.PowerShell.Commands.Management/commands/management/ClearPropertyCommand.cs b/src/Microsoft.PowerShell.Commands.Management/commands/management/ClearPropertyCommand.cs
index c42c3fa199a..d203a8facce 100644
--- a/src/Microsoft.PowerShell.Commands.Management/commands/management/ClearPropertyCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Management/commands/management/ClearPropertyCommand.cs
@@ -12,7 +12,7 @@ namespace Microsoft.PowerShell.Commands
/// A command to clear the value of a property of an item at a specified path.
///
[Cmdlet(VerbsCommon.Clear, "ItemProperty", DefaultParameterSetName = "Path", SupportsShouldProcess = true, SupportsTransactions = true,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113284")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096903")]
public class ClearItemPropertyCommand : PassThroughItemPropertyCommandBase
{
#region Parameters
diff --git a/src/Microsoft.PowerShell.Commands.Management/commands/management/CombinePathCommand.cs b/src/Microsoft.PowerShell.Commands.Management/commands/management/CombinePathCommand.cs
index 1b89f0be1de..5ee3ba4ca34 100644
--- a/src/Microsoft.PowerShell.Commands.Management/commands/management/CombinePathCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Management/commands/management/CombinePathCommand.cs
@@ -14,7 +14,7 @@ namespace Microsoft.PowerShell.Commands
/// A command that adds the parent and child parts of a path together
/// with the appropriate path separator.
///
- [Cmdlet(VerbsCommon.Join, "Path", SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113347")]
+ [Cmdlet(VerbsCommon.Join, "Path", SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096811")]
[OutputType(typeof(string))]
public class JoinPathCommand : CoreCommandWithCredentialsBase
{
diff --git a/src/Microsoft.PowerShell.Commands.Management/commands/management/Computer.cs b/src/Microsoft.PowerShell.Commands.Management/commands/management/Computer.cs
index 97785dab993..ef152c642a2 100644
--- a/src/Microsoft.PowerShell.Commands.Management/commands/management/Computer.cs
+++ b/src/Microsoft.PowerShell.Commands.Management/commands/management/Computer.cs
@@ -164,7 +164,7 @@ public enum WaitForServiceTypes
/// Restarts the computer.
///
[Cmdlet(VerbsLifecycle.Restart, "Computer", SupportsShouldProcess = true, DefaultParameterSetName = DefaultParameterSet,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135253", RemotingCapability = RemotingCapability.OwnedByCommand)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097060", RemotingCapability = RemotingCapability.OwnedByCommand)]
public class RestartComputerCommand : PSCmdlet, IDisposable
{
#region "Parameters and PrivateData"
@@ -1117,7 +1117,7 @@ protected override void StopProcessing()
/// Cmdlet to stop computer.
///
[Cmdlet(VerbsLifecycle.Stop, "Computer", SupportsShouldProcess = true,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135263", RemotingCapability = RemotingCapability.SupportedByCommand)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097151", RemotingCapability = RemotingCapability.SupportedByCommand)]
public sealed class StopComputerCommand : PSCmdlet, IDisposable
{
#region Private Members
@@ -1277,7 +1277,7 @@ private void ProcessWSManProtocol(object[] flags)
///
[Cmdlet(VerbsCommon.Rename, "Computer", SupportsShouldProcess = true,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=219990", RemotingCapability = RemotingCapability.SupportedByCommand)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097054", RemotingCapability = RemotingCapability.SupportedByCommand)]
public class RenameComputerCommand : PSCmdlet
{
#region Private Members
diff --git a/src/Microsoft.PowerShell.Commands.Management/commands/management/ConvertPathCommand.cs b/src/Microsoft.PowerShell.Commands.Management/commands/management/ConvertPathCommand.cs
index 19cd92cec61..13687aad792 100644
--- a/src/Microsoft.PowerShell.Commands.Management/commands/management/ConvertPathCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Management/commands/management/ConvertPathCommand.cs
@@ -13,7 +13,7 @@ namespace Microsoft.PowerShell.Commands
/// a provider internal path.
///
[Cmdlet(VerbsData.Convert, "Path", DefaultParameterSetName = "Path", SupportsTransactions = true,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113289", RemotingCapability = RemotingCapability.None)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096588", RemotingCapability = RemotingCapability.None)]
[OutputType(typeof(string))]
public class ConvertPathCommand : CoreCommandBase
{
diff --git a/src/Microsoft.PowerShell.Commands.Management/commands/management/CopyPropertyCommand.cs b/src/Microsoft.PowerShell.Commands.Management/commands/management/CopyPropertyCommand.cs
index 627f038776b..b1271dd398d 100644
--- a/src/Microsoft.PowerShell.Commands.Management/commands/management/CopyPropertyCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Management/commands/management/CopyPropertyCommand.cs
@@ -11,7 +11,7 @@ namespace Microsoft.PowerShell.Commands
/// A command to copy a property on an item.
///
[Cmdlet(VerbsCommon.Copy, "ItemProperty", DefaultParameterSetName = "Path", SupportsShouldProcess = true, SupportsTransactions = true,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113293")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096589")]
public class CopyItemPropertyCommand : PassThroughItemPropertyCommandBase
{
#region Parameters
diff --git a/src/Microsoft.PowerShell.Commands.Management/commands/management/GetChildrenCommand.cs b/src/Microsoft.PowerShell.Commands.Management/commands/management/GetChildrenCommand.cs
index 14f64cea422..9caa7cdee15 100644
--- a/src/Microsoft.PowerShell.Commands.Management/commands/management/GetChildrenCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Management/commands/management/GetChildrenCommand.cs
@@ -14,7 +14,7 @@ namespace Microsoft.PowerShell.Commands
///
///
///
- [Cmdlet(VerbsCommon.Get, "ChildItem", DefaultParameterSetName = "Items", SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113308")]
+ [Cmdlet(VerbsCommon.Get, "ChildItem", DefaultParameterSetName = "Items", SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096492")]
public class GetChildItemCommand : CoreCommandBase
{
///
diff --git a/src/Microsoft.PowerShell.Commands.Management/commands/management/GetComputerInfoCommand.cs b/src/Microsoft.PowerShell.Commands.Management/commands/management/GetComputerInfoCommand.cs
index 0ecf80085db..5d43245e2fe 100644
--- a/src/Microsoft.PowerShell.Commands.Management/commands/management/GetComputerInfoCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Management/commands/management/GetComputerInfoCommand.cs
@@ -25,7 +25,7 @@ namespace Microsoft.PowerShell.Commands
/// about a computer.
///
[Cmdlet(VerbsCommon.Get, "ComputerInfo",
- HelpUri = "https://go.microsoft.com/fwlink/?LinkId=799466")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2096810")]
[Alias("gin")]
[OutputType(typeof(ComputerInfo), typeof(PSObject))]
public class GetComputerInfoCommand : PSCmdlet
diff --git a/src/Microsoft.PowerShell.Commands.Management/commands/management/GetContentCommand.cs b/src/Microsoft.PowerShell.Commands.Management/commands/management/GetContentCommand.cs
index bf7d6037bce..f133d4e5db9 100644
--- a/src/Microsoft.PowerShell.Commands.Management/commands/management/GetContentCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Management/commands/management/GetContentCommand.cs
@@ -16,7 +16,7 @@ namespace Microsoft.PowerShell.Commands
///
/// A command to get the content of an item at a specified path.
///
- [Cmdlet(VerbsCommon.Get, "Content", DefaultParameterSetName = "Path", SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113310")]
+ [Cmdlet(VerbsCommon.Get, "Content", DefaultParameterSetName = "Path", SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096490")]
public class GetContentCommand : ContentCommandBase
{
#region Parameters
diff --git a/src/Microsoft.PowerShell.Commands.Management/commands/management/GetPropertyCommand.cs b/src/Microsoft.PowerShell.Commands.Management/commands/management/GetPropertyCommand.cs
index 7079f3d55c5..761f054be7d 100644
--- a/src/Microsoft.PowerShell.Commands.Management/commands/management/GetPropertyCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Management/commands/management/GetPropertyCommand.cs
@@ -12,7 +12,7 @@ namespace Microsoft.PowerShell.Commands
///
/// A command to get the property of an item at a specified path.
///
- [Cmdlet(VerbsCommon.Get, "ItemProperty", DefaultParameterSetName = "Path", SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113320")]
+ [Cmdlet(VerbsCommon.Get, "ItemProperty", DefaultParameterSetName = "Path", SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096493")]
public class GetItemPropertyCommand : ItemPropertyCommandBase
{
#region Parameters
@@ -167,7 +167,7 @@ protected override void ProcessRecord()
///
/// A command to get the property value of an item at a specified path.
///
- [Cmdlet(VerbsCommon.Get, "ItemPropertyValue", DefaultParameterSetName = "Path", SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkId=389281")]
+ [Cmdlet(VerbsCommon.Get, "ItemPropertyValue", DefaultParameterSetName = "Path", SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2096906")]
public sealed class GetItemPropertyValueCommand : ItemPropertyCommandBase
{
#region Parameters
diff --git a/src/Microsoft.PowerShell.Commands.Management/commands/management/MovePropertyCommand.cs b/src/Microsoft.PowerShell.Commands.Management/commands/management/MovePropertyCommand.cs
index a7eacb14fd0..89094d7487d 100644
--- a/src/Microsoft.PowerShell.Commands.Management/commands/management/MovePropertyCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Management/commands/management/MovePropertyCommand.cs
@@ -12,7 +12,7 @@ namespace Microsoft.PowerShell.Commands
/// A command to move a property on an item to another item.
///
[Cmdlet(VerbsCommon.Move, "ItemProperty", SupportsShouldProcess = true, DefaultParameterSetName = "Path", SupportsTransactions = true,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113351")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096817")]
public class MoveItemPropertyCommand : PassThroughItemPropertyCommandBase
{
#region Parameters
diff --git a/src/Microsoft.PowerShell.Commands.Management/commands/management/Navigation.cs b/src/Microsoft.PowerShell.Commands.Management/commands/management/Navigation.cs
index b263586a002..1c2388782a3 100644
--- a/src/Microsoft.PowerShell.Commands.Management/commands/management/Navigation.cs
+++ b/src/Microsoft.PowerShell.Commands.Management/commands/management/Navigation.cs
@@ -333,7 +333,7 @@ internal override CmdletProviderContext CmdletProviderContext
///
///
///
- [Cmdlet(VerbsCommon.Get, "Location", DefaultParameterSetName = LocationParameterSet, SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113321")]
+ [Cmdlet(VerbsCommon.Get, "Location", DefaultParameterSetName = LocationParameterSet, SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096495")]
[OutputType(typeof(PathInfo), ParameterSetName = new string[] { LocationParameterSet })]
[OutputType(typeof(PathInfoStack), ParameterSetName = new string[] { StackParameterSet })]
public class GetLocationCommand : DriveMatchingCoreCommandBase
@@ -633,7 +633,7 @@ protected override void ProcessRecord()
/// The core command for setting/changing location.
/// This is the equivalent of cd command.
///
- [Cmdlet(VerbsCommon.Set, "Location", DefaultParameterSetName = PathParameterSet, SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113397")]
+ [Cmdlet(VerbsCommon.Set, "Location", DefaultParameterSetName = PathParameterSet, SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097049")]
[OutputType(typeof(PathInfo), typeof(PathInfoStack))]
public class SetLocationCommand : CoreCommandBase
{
@@ -809,7 +809,7 @@ protected override void ProcessRecord()
/// The core command for setting/changing location and pushing it onto a location stack.
/// This is the equivalent of the pushd command.
///
- [Cmdlet(VerbsCommon.Push, "Location", DefaultParameterSetName = PathParameterSet, SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113370")]
+ [Cmdlet(VerbsCommon.Push, "Location", DefaultParameterSetName = PathParameterSet, SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097105")]
public class PushLocationCommand : CoreCommandBase
{
#region Command parameters
@@ -967,7 +967,7 @@ protected override void ProcessRecord()
/// The core command for pop-location. This is the equivalent of the popd command.
/// It pops a container from the stack and sets the current location to that container.
///
- [Cmdlet(VerbsCommon.Pop, "Location", SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113369")]
+ [Cmdlet(VerbsCommon.Pop, "Location", SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096907")]
public class PopLocationCommand : CoreCommandBase
{
#region Command parameters
@@ -1078,7 +1078,7 @@ protected override void ProcessRecord()
/// Mounts a drive in the Monad namespace.
///
[Cmdlet(VerbsCommon.New, "PSDrive", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Low,
- SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113357")]
+ SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096815")]
public class NewPSDriveCommand : CoreCommandWithCredentialsBase
{
#region Command parameters
@@ -1480,7 +1480,7 @@ internal List GetMatchingDrives(
/// Removes a drive that is mounted in the Monad namespace.
///
[Cmdlet(VerbsCommon.Remove, "PSDrive", DefaultParameterSetName = NameParameterSet, SupportsShouldProcess = true, SupportsTransactions = true,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113376")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097050")]
public class RemovePSDriveCommand : DriveMatchingCoreCommandBase
{
#region Command parameters
@@ -1657,7 +1657,7 @@ protected override void ProcessRecord()
/// Gets a specified or listing of drives that are mounted in the Monad
/// namespace.
///
- [Cmdlet(VerbsCommon.Get, "PSDrive", DefaultParameterSetName = NameParameterSet, SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113327")]
+ [Cmdlet(VerbsCommon.Get, "PSDrive", DefaultParameterSetName = NameParameterSet, SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096494")]
[OutputType(typeof(PSDriveInfo))]
public class GetPSDriveCommand : DriveMatchingCoreCommandBase
{
@@ -1841,7 +1841,7 @@ protected override void ProcessRecord()
///
/// Gets the specified item using the namespace providers.
///
- [Cmdlet(VerbsCommon.Get, "Item", DefaultParameterSetName = PathParameterSet, SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113319")]
+ [Cmdlet(VerbsCommon.Get, "Item", DefaultParameterSetName = PathParameterSet, SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096812")]
public class GetItemCommand : CoreCommandWithCredentialsBase
{
#region Command parameters
@@ -2010,7 +2010,7 @@ protected override void ProcessRecord()
/// Creates the specified item using the namespace providers.
///
[Cmdlet(VerbsCommon.New, "Item", DefaultParameterSetName = PathParameterSet, SupportsShouldProcess = true, SupportsTransactions = true,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113353")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096592")]
public class NewItemCommand : CoreCommandWithCredentialsBase
{
#region Command parameters
@@ -2161,7 +2161,7 @@ protected override void ProcessRecord()
///
/// Sets the specified item using the namespace providers.
///
- [Cmdlet(VerbsCommon.Set, "Item", SupportsShouldProcess = true, DefaultParameterSetName = PathParameterSet, SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113395")]
+ [Cmdlet(VerbsCommon.Set, "Item", SupportsShouldProcess = true, DefaultParameterSetName = PathParameterSet, SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097055")]
public class SetItemCommand : CoreCommandWithCredentialsBase
{
#region Command parameters
@@ -2364,7 +2364,7 @@ protected override void ProcessRecord()
///
/// Removes the specified item using the namespace providers.
///
- [Cmdlet(VerbsCommon.Remove, "Item", SupportsShouldProcess = true, DefaultParameterSetName = PathParameterSet, SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113373")]
+ [Cmdlet(VerbsCommon.Remove, "Item", SupportsShouldProcess = true, DefaultParameterSetName = PathParameterSet, SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097103")]
public class RemoveItemCommand : CoreCommandWithCredentialsBase
{
#region Command parameters
@@ -2792,7 +2792,7 @@ protected override void ProcessRecord()
/// the namespace providers.
///
[Cmdlet(VerbsCommon.Move, "Item", DefaultParameterSetName = PathParameterSet, SupportsShouldProcess = true, SupportsTransactions = true,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113350")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096591")]
public class MoveItemCommand : CoreCommandWithCredentialsBase
{
#region Command parameters
@@ -3168,7 +3168,7 @@ private void MoveItem(string path, bool literalPath = false)
/// Renames a specified item to a new name using the namespace providers.
///
[Cmdlet(VerbsCommon.Rename, "Item", SupportsShouldProcess = true, SupportsTransactions = true, DefaultParameterSetName = ByPathParameterSet,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113382")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097153")]
public class RenameItemCommand : CoreCommandWithCredentialsBase
{
#region Command parameters
@@ -3509,7 +3509,7 @@ private void RenameItem(string path, bool literalPath = false)
/// Copies a specified item to a new location using the namespace providers.
///
[Cmdlet(VerbsCommon.Copy, "Item", DefaultParameterSetName = PathParameterSet, SupportsShouldProcess = true, SupportsTransactions = true,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113292")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096990")]
public class CopyItemCommand : CoreCommandWithCredentialsBase
{
#region Command parameters
@@ -3768,7 +3768,7 @@ protected override void ProcessRecord()
/// Clears an item at the specified location.
///
[Cmdlet(VerbsCommon.Clear, "Item", DefaultParameterSetName = PathParameterSet, SupportsShouldProcess = true, SupportsTransactions = true,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113283")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096491")]
public class ClearItemCommand : CoreCommandWithCredentialsBase
{
#region Command parameters
@@ -3957,7 +3957,7 @@ protected override void ProcessRecord()
/// Invokes an item at the specified location.
///
[Cmdlet(VerbsLifecycle.Invoke, "Item", DefaultParameterSetName = PathParameterSet, SupportsShouldProcess = true, SupportsTransactions = true,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113345")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096590")]
public class InvokeItemCommand : CoreCommandWithCredentialsBase
{
#region Command parameters
@@ -4124,7 +4124,7 @@ protected override void ProcessRecord()
///
/// Gets a core command provider by name.
///
- [Cmdlet(VerbsCommon.Get, "PSProvider", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113329")]
+ [Cmdlet(VerbsCommon.Get, "PSProvider", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096816")]
[OutputType(typeof(ProviderInfo))]
public class GetPSProviderCommand : CoreCommandBase
{
diff --git a/src/Microsoft.PowerShell.Commands.Management/commands/management/NewPropertyCommand.cs b/src/Microsoft.PowerShell.Commands.Management/commands/management/NewPropertyCommand.cs
index 863cee7c8b5..b2e6673faf1 100644
--- a/src/Microsoft.PowerShell.Commands.Management/commands/management/NewPropertyCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Management/commands/management/NewPropertyCommand.cs
@@ -11,7 +11,7 @@ namespace Microsoft.PowerShell.Commands
/// A command to create a new property on an object.
///
[Cmdlet(VerbsCommon.New, "ItemProperty", DefaultParameterSetName = "Path", SupportsShouldProcess = true, SupportsTransactions = true,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113354")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096813")]
public class NewItemPropertyCommand : ItemPropertyCommandBase
{
#region Parameters
diff --git a/src/Microsoft.PowerShell.Commands.Management/commands/management/ParsePathCommand.cs b/src/Microsoft.PowerShell.Commands.Management/commands/management/ParsePathCommand.cs
index 46e9ba14a2d..77086c8b7e3 100644
--- a/src/Microsoft.PowerShell.Commands.Management/commands/management/ParsePathCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Management/commands/management/ParsePathCommand.cs
@@ -15,7 +15,7 @@ namespace Microsoft.PowerShell.Commands
/// A command to resolve MSH paths containing glob characters to
/// MSH paths that match the glob strings.
///
- [Cmdlet(VerbsCommon.Split, "Path", DefaultParameterSetName = "ParentSet", SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113404")]
+ [Cmdlet(VerbsCommon.Split, "Path", DefaultParameterSetName = "ParentSet", SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097149")]
[OutputType(typeof(string), ParameterSetName = new[] { leafSet,
leafBaseSet,
extensionSet,
diff --git a/src/Microsoft.PowerShell.Commands.Management/commands/management/PingPathCommand.cs b/src/Microsoft.PowerShell.Commands.Management/commands/management/PingPathCommand.cs
index acf16bfc539..46ce49079fa 100644
--- a/src/Microsoft.PowerShell.Commands.Management/commands/management/PingPathCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Management/commands/management/PingPathCommand.cs
@@ -32,7 +32,7 @@ public enum TestPathType
///
/// A command to determine if an item exists at a specified path.
///
- [Cmdlet(VerbsDiagnostic.Test, "Path", DefaultParameterSetName = "Path", SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113418")]
+ [Cmdlet(VerbsDiagnostic.Test, "Path", DefaultParameterSetName = "Path", SupportsTransactions = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097057")]
[OutputType(typeof(bool))]
public class TestPathCommand : CoreCommandWithCredentialsBase
{
diff --git a/src/Microsoft.PowerShell.Commands.Management/commands/management/Process.cs b/src/Microsoft.PowerShell.Commands.Management/commands/management/Process.cs
index 9bf3b5fcf36..1ef115c7764 100644
--- a/src/Microsoft.PowerShell.Commands.Management/commands/management/Process.cs
+++ b/src/Microsoft.PowerShell.Commands.Management/commands/management/Process.cs
@@ -454,7 +454,7 @@ internal static bool TryHasExited(Process process)
/// This class implements the get-process command.
///
[Cmdlet(VerbsCommon.Get, "Process", DefaultParameterSetName = NameParameterSet,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113324", RemotingCapability = RemotingCapability.SupportedByCommand)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096814", RemotingCapability = RemotingCapability.SupportedByCommand)]
[OutputType(typeof(ProcessModule), typeof(FileVersionInfo), typeof(Process))]
public sealed class GetProcessCommand : ProcessBaseCommand
{
@@ -839,7 +839,7 @@ private static string RetrieveProcessUserName(Process process)
///
/// This class implements the Wait-process command.
///
- [Cmdlet(VerbsLifecycle.Wait, "Process", DefaultParameterSetName = "Name", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135277")]
+ [Cmdlet(VerbsLifecycle.Wait, "Process", DefaultParameterSetName = "Name", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097146")]
public sealed class WaitProcessCommand : ProcessBaseCommand
{
#region Parameters
@@ -1068,7 +1068,7 @@ protected override void StopProcessing()
///
[Cmdlet(VerbsLifecycle.Stop, "Process",
DefaultParameterSetName = "Id",
- SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113412")]
+ SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097058")]
[OutputType(typeof(Process))]
public sealed class StopProcessCommand : ProcessBaseCommand
{
@@ -1433,7 +1433,7 @@ private void StopProcess(Process process)
///
/// This class implements the Debug-process command.
///
- [Cmdlet(VerbsDiagnostic.Debug, "Process", DefaultParameterSetName = "Name", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135206")]
+ [Cmdlet(VerbsDiagnostic.Debug, "Process", DefaultParameterSetName = "Name", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096809")]
public sealed class DebugProcessCommand : ProcessBaseCommand
{
#region Parameters
@@ -1604,7 +1604,7 @@ private string MapReturnCodeToErrorMessage(int returnCode)
///
/// This class implements the Start-process command.
///
- [Cmdlet(VerbsLifecycle.Start, "Process", DefaultParameterSetName = "Default", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135261")]
+ [Cmdlet(VerbsLifecycle.Start, "Process", DefaultParameterSetName = "Default", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097141")]
[OutputType(typeof(Process))]
public sealed class StartProcessCommand : PSCmdlet, IDisposable
{
diff --git a/src/Microsoft.PowerShell.Commands.Management/commands/management/RemovePropertyCommand.cs b/src/Microsoft.PowerShell.Commands.Management/commands/management/RemovePropertyCommand.cs
index 42878765333..55893107000 100644
--- a/src/Microsoft.PowerShell.Commands.Management/commands/management/RemovePropertyCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Management/commands/management/RemovePropertyCommand.cs
@@ -12,7 +12,7 @@ namespace Microsoft.PowerShell.Commands
/// A command to remove a property from an item.
///
[Cmdlet(VerbsCommon.Remove, "ItemProperty", DefaultParameterSetName = "Path", SupportsShouldProcess = true, SupportsTransactions = true,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113374")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097013")]
public class RemoveItemPropertyCommand : ItemPropertyCommandBase
{
#region Parameters
diff --git a/src/Microsoft.PowerShell.Commands.Management/commands/management/RenamePropertyCommand.cs b/src/Microsoft.PowerShell.Commands.Management/commands/management/RenamePropertyCommand.cs
index f04dd40bb8c..9ba19a521e9 100644
--- a/src/Microsoft.PowerShell.Commands.Management/commands/management/RenamePropertyCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Management/commands/management/RenamePropertyCommand.cs
@@ -11,7 +11,7 @@ namespace Microsoft.PowerShell.Commands
/// A command to rename a property of an item at a specified path.
///
[Cmdlet(VerbsCommon.Rename, "ItemProperty", DefaultParameterSetName = "Path", SupportsShouldProcess = true, SupportsTransactions = true,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113383")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097152")]
public class RenameItemPropertyCommand : PassThroughItemPropertyCommandBase
{
#region Parameters
diff --git a/src/Microsoft.PowerShell.Commands.Management/commands/management/ResolvePathCommand.cs b/src/Microsoft.PowerShell.Commands.Management/commands/management/ResolvePathCommand.cs
index d0b96c57399..9879716be4c 100644
--- a/src/Microsoft.PowerShell.Commands.Management/commands/management/ResolvePathCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Management/commands/management/ResolvePathCommand.cs
@@ -14,7 +14,7 @@ namespace Microsoft.PowerShell.Commands
/// MSH paths that match the glob strings.
///
[Cmdlet(VerbsDiagnostic.Resolve, "Path", DefaultParameterSetName = "Path", SupportsTransactions = true,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113384")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097143")]
public class ResolvePathCommand : CoreCommandWithCredentialsBase
{
#region Parameters
diff --git a/src/Microsoft.PowerShell.Commands.Management/commands/management/Service.cs b/src/Microsoft.PowerShell.Commands.Management/commands/management/Service.cs
index 207252b2340..0b2feeb2e53 100644
--- a/src/Microsoft.PowerShell.Commands.Management/commands/management/Service.cs
+++ b/src/Microsoft.PowerShell.Commands.Management/commands/management/Service.cs
@@ -570,7 +570,7 @@ private bool Matches(ServiceController service, string[] matchList)
/// This class implements the get-service command.
///
[Cmdlet(VerbsCommon.Get, "Service", DefaultParameterSetName = "Default",
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113332", RemotingCapability = RemotingCapability.SupportedByCommand)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096496", RemotingCapability = RemotingCapability.SupportedByCommand)]
[OutputType(typeof(ServiceController))]
public sealed class GetServiceCommand : MultipleServiceCommandBase
{
@@ -1289,7 +1289,7 @@ internal bool DoResumeService(ServiceController serviceController)
/// Note that the services will be sorted before being stopped.
/// PM confirms that this is OK.
///
- [Cmdlet(VerbsLifecycle.Stop, "Service", DefaultParameterSetName = "InputObject", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113414")]
+ [Cmdlet(VerbsLifecycle.Stop, "Service", DefaultParameterSetName = "InputObject", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097052")]
[OutputType(typeof(ServiceController))]
public sealed class StopServiceCommand : ServiceOperationBaseCommand
{
@@ -1342,7 +1342,7 @@ protected override void ProcessRecord()
///
/// This class implements the start-service command.
///
- [Cmdlet(VerbsLifecycle.Start, "Service", DefaultParameterSetName = "InputObject", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113406")]
+ [Cmdlet(VerbsLifecycle.Start, "Service", DefaultParameterSetName = "InputObject", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097051")]
[OutputType(typeof(ServiceController))]
public sealed class StartServiceCommand : ServiceOperationBaseCommand
{
@@ -1374,7 +1374,7 @@ protected override void ProcessRecord()
///
/// This class implements the suspend-service command.
///
- [Cmdlet(VerbsLifecycle.Suspend, "Service", DefaultParameterSetName = "InputObject", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113416")]
+ [Cmdlet(VerbsLifecycle.Suspend, "Service", DefaultParameterSetName = "InputObject", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097053")]
[OutputType(typeof(ServiceController))]
public sealed class SuspendServiceCommand : ServiceOperationBaseCommand
{
@@ -1407,7 +1407,7 @@ protected override void ProcessRecord()
/// This class implements the resume-service command.
///
[Cmdlet(VerbsLifecycle.Resume, "Service", DefaultParameterSetName = "InputObject", SupportsShouldProcess = true,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113386")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097150")]
[OutputType(typeof(ServiceController))]
public sealed class ResumeServiceCommand : ServiceOperationBaseCommand
{
@@ -1441,7 +1441,7 @@ protected override void ProcessRecord()
/// This class implements the restart-service command.
///
[Cmdlet(VerbsLifecycle.Restart, "Service", DefaultParameterSetName = "InputObject", SupportsShouldProcess = true,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113385")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097059")]
[OutputType(typeof(ServiceController))]
public sealed class RestartServiceCommand : ServiceOperationBaseCommand
{
@@ -1495,7 +1495,7 @@ protected override void ProcessRecord()
/// This class implements the set-service command.
///
[Cmdlet(VerbsCommon.Set, "Service", SupportsShouldProcess = true, DefaultParameterSetName = "Name",
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113399", RemotingCapability = RemotingCapability.SupportedByCommand)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097148", RemotingCapability = RemotingCapability.SupportedByCommand)]
[OutputType(typeof(ServiceController))]
public class SetServiceCommand : ServiceOperationBaseCommand
{
@@ -1992,9 +1992,9 @@ protected override void ProcessRecord()
#region NewServiceCommand
///
- /// This class implements the set-service command.
+ /// This class implements the New-Service command.
///
- [Cmdlet(VerbsCommon.New, "Service", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113359")]
+ [Cmdlet(VerbsCommon.New, "Service", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096905")]
[OutputType(typeof(ServiceController))]
public class NewServiceCommand : ServiceBaseCommand
{
diff --git a/src/Microsoft.PowerShell.Commands.Management/commands/management/SetContentCommand.cs b/src/Microsoft.PowerShell.Commands.Management/commands/management/SetContentCommand.cs
index 2187264866b..e7e4eb1fa15 100644
--- a/src/Microsoft.PowerShell.Commands.Management/commands/management/SetContentCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Management/commands/management/SetContentCommand.cs
@@ -12,7 +12,7 @@ namespace Microsoft.PowerShell.Commands
/// A command to set the content of an item at a specified path.
///
[Cmdlet(VerbsCommon.Set, "Content", DefaultParameterSetName = "Path", SupportsShouldProcess = true, SupportsTransactions = true,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113392")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097142")]
public class SetContentCommand : WriteContentCommandBase
{
#region protected members
diff --git a/src/Microsoft.PowerShell.Commands.Management/commands/management/SetPropertyCommand.cs b/src/Microsoft.PowerShell.Commands.Management/commands/management/SetPropertyCommand.cs
index 1bbb6068ae9..eb07082d92d 100644
--- a/src/Microsoft.PowerShell.Commands.Management/commands/management/SetPropertyCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Management/commands/management/SetPropertyCommand.cs
@@ -12,7 +12,7 @@ namespace Microsoft.PowerShell.Commands
/// A command to set the property of an item at a specified path.
///
[Cmdlet(VerbsCommon.Set, "ItemProperty", DefaultParameterSetName = "propertyValuePathSet", SupportsShouldProcess = true, SupportsTransactions = true,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113396")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097147")]
public class SetItemPropertyCommand : PassThroughItemPropertyCommandBase
{
private const string propertyValuePathSet = "propertyValuePathSet";
diff --git a/src/Microsoft.PowerShell.Commands.Management/commands/management/TestConnectionCommand.cs b/src/Microsoft.PowerShell.Commands.Management/commands/management/TestConnectionCommand.cs
index 64af1553948..9a213b7a864 100644
--- a/src/Microsoft.PowerShell.Commands.Management/commands/management/TestConnectionCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Management/commands/management/TestConnectionCommand.cs
@@ -21,7 +21,7 @@ namespace Microsoft.PowerShell.Commands
/// The implementation of the "Test-Connection" cmdlet.
///
[Cmdlet(VerbsDiagnostic.Test, "Connection", DefaultParameterSetName = DefaultPingParameterSet,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135266")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097144")]
[OutputType(typeof(PingStatus), ParameterSetName = new string[] { DefaultPingParameterSet })]
[OutputType(typeof(PingStatus), ParameterSetName = new string[] { RepeatPingParameterSet, MtuSizeDetectParameterSet })]
[OutputType(typeof(bool), ParameterSetName = new string[] { DefaultPingParameterSet, RepeatPingParameterSet, TcpPortParameterSet })]
diff --git a/src/Microsoft.PowerShell.Commands.Management/commands/management/TimeZoneCommands.cs b/src/Microsoft.PowerShell.Commands.Management/commands/management/TimeZoneCommands.cs
index 4f5651f3679..250bccaddf6 100644
--- a/src/Microsoft.PowerShell.Commands.Management/commands/management/TimeZoneCommands.cs
+++ b/src/Microsoft.PowerShell.Commands.Management/commands/management/TimeZoneCommands.cs
@@ -16,7 +16,7 @@ namespace Microsoft.PowerShell.Commands
/// A cmdlet to retrieve time zone information.
///
[Cmdlet(VerbsCommon.Get, "TimeZone", DefaultParameterSetName = "Name",
- HelpUri = "https://go.microsoft.com/fwlink/?LinkId=799468")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2096904")]
[Alias("gtz")]
public class GetTimeZoneCommand : PSCmdlet
{
@@ -120,7 +120,7 @@ protected override void ProcessRecord()
[Cmdlet(VerbsCommon.Set, "TimeZone",
SupportsShouldProcess = true,
DefaultParameterSetName = "Name",
- HelpUri = "https://go.microsoft.com/fwlink/?LinkId=799469")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2097056")]
[Alias("stz")]
public class SetTimeZoneCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/AddMember.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/AddMember.cs
index dbde9521828..eb6ea6fc99e 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/AddMember.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/AddMember.cs
@@ -17,7 +17,7 @@ namespace Microsoft.PowerShell.Commands
/// This class implements get-member command.
///
[Cmdlet(VerbsCommon.Add, "Member", DefaultParameterSetName = "TypeNameSet",
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113280", RemotingCapability = RemotingCapability.None)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097109", RemotingCapability = RemotingCapability.None)]
public class AddMemberCommand : PSCmdlet
{
private static readonly object s_notSpecified = new object();
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/AddType.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/AddType.cs
index 0f795cb2a23..714a852383a 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/AddType.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/AddType.cs
@@ -60,7 +60,7 @@ public enum OutputAssemblyType
/// Adds a new type to the Application Domain.
/// This version is based on CodeAnalysis (Roslyn).
///
- [Cmdlet(VerbsCommon.Add, "Type", DefaultParameterSetName = FromSourceParameterSetName, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135195")]
+ [Cmdlet(VerbsCommon.Add, "Type", DefaultParameterSetName = FromSourceParameterSetName, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096601")]
[OutputType(typeof(Type))]
public sealed class AddTypeCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Compare-Object.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Compare-Object.cs
index b3ccc3b6795..524af9fdb3f 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Compare-Object.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Compare-Object.cs
@@ -12,7 +12,7 @@ namespace Microsoft.PowerShell.Commands
{
///
///
- [Cmdlet(VerbsData.Compare, "Object", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113286",
+ [Cmdlet(VerbsData.Compare, "Object", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096605",
RemotingCapability = RemotingCapability.None)]
public sealed class CompareObjectCommand : ObjectCmdletBase
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ConvertFrom-StringData.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ConvertFrom-StringData.cs
index f058d649275..12491fbd077 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ConvertFrom-StringData.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ConvertFrom-StringData.cs
@@ -11,7 +11,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Class comment.
///
- [Cmdlet(VerbsData.ConvertFrom, "StringData", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113288", RemotingCapability = RemotingCapability.None)]
+ [Cmdlet(VerbsData.ConvertFrom, "StringData", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096602", RemotingCapability = RemotingCapability.None)]
[OutputType(typeof(Hashtable))]
public sealed class ConvertFromStringDataCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ConvertTo-Html.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ConvertTo-Html.cs
index 432dd5ce5b1..d8de66a7461 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ConvertTo-Html.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ConvertTo-Html.cs
@@ -20,7 +20,7 @@ namespace Microsoft.PowerShell.Commands
///
[Cmdlet(VerbsData.ConvertTo, "Html", DefaultParameterSetName = "Page",
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113290", RemotingCapability = RemotingCapability.None)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096595", RemotingCapability = RemotingCapability.None)]
public sealed
class ConvertToHtmlCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/CsvCommands.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/CsvCommands.cs
index 5d4598267f8..2503d925934 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/CsvCommands.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/CsvCommands.cs
@@ -138,7 +138,7 @@ protected override void BeginProcessing()
///
/// Implementation for the Export-Csv command.
///
- [Cmdlet(VerbsData.Export, "Csv", SupportsShouldProcess = true, DefaultParameterSetName = "Delimiter", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113299")]
+ [Cmdlet(VerbsData.Export, "Csv", SupportsShouldProcess = true, DefaultParameterSetName = "Delimiter", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096608")]
public sealed class ExportCsvCommand : BaseCsvWritingCommand, IDisposable
{
#region Command Line Parameters
@@ -509,7 +509,7 @@ public void Dispose()
///
/// Implements Import-Csv command.
///
- [Cmdlet(VerbsData.Import, "Csv", DefaultParameterSetName = "DelimiterPath", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113341")]
+ [Cmdlet(VerbsData.Import, "Csv", DefaultParameterSetName = "DelimiterPath", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097020")]
public sealed class ImportCsvCommand : PSCmdlet
{
#region Command Line Parameters
@@ -656,7 +656,7 @@ protected override void ProcessRecord()
/// Implements ConvertTo-Csv command.
///
[Cmdlet(VerbsData.ConvertTo, "Csv", DefaultParameterSetName = "Delimiter",
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135203", RemotingCapability = RemotingCapability.None)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096832", RemotingCapability = RemotingCapability.None)]
[OutputType(typeof(string))]
public sealed class ConvertToCsvCommand : BaseCsvWritingCommand
{
@@ -745,7 +745,7 @@ public override void WriteCsvLine(string line)
/// Implements ConvertFrom-Csv command.
///
[Cmdlet(VerbsData.ConvertFrom, "Csv", DefaultParameterSetName = "Delimiter",
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135201", RemotingCapability = RemotingCapability.None)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096830", RemotingCapability = RemotingCapability.None)]
public sealed class ConvertFromCsvCommand : PSCmdlet
{
#region Command Line Parameters
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/DebugRunspaceCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/DebugRunspaceCommand.cs
index 7b22cbcddd9..122fd33ad71 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/DebugRunspaceCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/DebugRunspaceCommand.cs
@@ -20,7 +20,7 @@ namespace Microsoft.PowerShell.Commands
///
[SuppressMessage("Microsoft.PowerShell", "PS1012:CallShouldProcessOnlyIfDeclaringSupport")]
[Cmdlet(VerbsDiagnostic.Debug, "Runspace", SupportsShouldProcess = true, DefaultParameterSetName = DebugRunspaceCommand.RunspaceParameterSet,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkId=403731")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2096917")]
public sealed class DebugRunspaceCommand : PSCmdlet
{
#region Strings
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Disable-PSBreakpoint.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Disable-PSBreakpoint.cs
index e8008650ccb..9e17910a561 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Disable-PSBreakpoint.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Disable-PSBreakpoint.cs
@@ -8,7 +8,7 @@ namespace Microsoft.PowerShell.Commands
///
/// This class implements Disable-PSBreakpoint.
///
- [Cmdlet(VerbsLifecycle.Disable, "PSBreakpoint", SupportsShouldProcess = true, DefaultParameterSetName = "Breakpoint", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113294")]
+ [Cmdlet(VerbsLifecycle.Disable, "PSBreakpoint", SupportsShouldProcess = true, DefaultParameterSetName = "Breakpoint", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096498")]
[OutputType(typeof(Breakpoint))]
public class DisablePSBreakpointCommand : PSBreakpointCommandBase
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Enable-PSBreakpoint.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Enable-PSBreakpoint.cs
index e697d36bc2b..c47f09b28e7 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Enable-PSBreakpoint.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Enable-PSBreakpoint.cs
@@ -118,7 +118,7 @@ private bool ShouldProcessInternal(string target)
///
/// This class implements Enable-PSBreakpoint.
///
- [Cmdlet(VerbsLifecycle.Enable, "PSBreakpoint", SupportsShouldProcess = true, DefaultParameterSetName = "Id", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113295")]
+ [Cmdlet(VerbsLifecycle.Enable, "PSBreakpoint", SupportsShouldProcess = true, DefaultParameterSetName = "Id", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096700")]
[OutputType(typeof(Breakpoint))]
public class EnablePSBreakpointCommand : PSBreakpointCommandBase
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/EnableDisableRunspaceDebugCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/EnableDisableRunspaceDebugCommand.cs
index 02869619e3f..433db02826b 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/EnableDisableRunspaceDebugCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/EnableDisableRunspaceDebugCommand.cs
@@ -327,7 +327,7 @@ protected void SetDebugPreferenceHelper(string processName, string[] appDomainNa
/// This cmdlet enables debugging for selected runspaces in the current or specified process.
///
[Cmdlet(VerbsLifecycle.Enable, "RunspaceDebug", DefaultParameterSetName = CommonRunspaceCommandBase.RunspaceNameParameterSet,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkId=403732")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2096831")]
public sealed class EnableRunspaceDebugCommand : CommonRunspaceCommandBase
{
#region Parameters
@@ -426,7 +426,7 @@ protected override void ProcessRecord()
/// This cmdlet disables Runspace debugging in selected Runspaces.
///
[Cmdlet(VerbsLifecycle.Disable, "RunspaceDebug", DefaultParameterSetName = CommonRunspaceCommandBase.RunspaceNameParameterSet,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkId=403733")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2096924")]
public sealed class DisableRunspaceDebugCommand : CommonRunspaceCommandBase
{
#region Overrides
@@ -482,7 +482,7 @@ protected override void ProcessRecord()
/// This cmdlet returns a PSRunspaceDebug object for each found Runspace object.
///
[Cmdlet(VerbsCommon.Get, "RunspaceDebug", DefaultParameterSetName = CommonRunspaceCommandBase.RunspaceNameParameterSet,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkId=403734")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2097015")]
[OutputType(typeof(PSRunspaceDebug))]
public sealed class GetRunspaceDebugCommand : CommonRunspaceCommandBase
{
@@ -521,7 +521,7 @@ protected override void ProcessRecord()
/// This cmdlet causes a running script or command to stop in the debugger at the next execution point.
///
[Cmdlet(VerbsLifecycle.Wait, "Debugger",
- HelpUri = "https://go.microsoft.com/fwlink/?LinkId=403735")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2097035")]
public sealed class WaitDebuggerCommand : PSCmdlet
{
#region Overrides
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ExportAliasCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ExportAliasCommand.cs
index 489b57c736a..31d79d2d748 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ExportAliasCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ExportAliasCommand.cs
@@ -29,7 +29,7 @@ public enum ExportAliasFormat
///
/// The implementation of the "export-alias" cmdlet.
///
- [Cmdlet(VerbsData.Export, "Alias", SupportsShouldProcess = true, DefaultParameterSetName = "ByPath", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113296")]
+ [Cmdlet(VerbsData.Export, "Alias", SupportsShouldProcess = true, DefaultParameterSetName = "ByPath", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096597")]
[OutputType(typeof(AliasInfo))]
public class ExportAliasCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/common/GetFormatDataCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/common/GetFormatDataCommand.cs
index 4076327fe55..2324b8e5e05 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/common/GetFormatDataCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/common/GetFormatDataCommand.cs
@@ -17,7 +17,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Currently supports only table controls
///
- [Cmdlet(VerbsCommon.Get, "FormatData", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=144303")]
+ [Cmdlet(VerbsCommon.Get, "FormatData", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096614")]
[OutputType(typeof(System.Management.Automation.ExtendedTypeDefinition))]
public class GetFormatDataCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/common/WriteFormatDataCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/common/WriteFormatDataCommand.cs
index 91ba42aa498..6d64902e6ff 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/common/WriteFormatDataCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/common/WriteFormatDataCommand.cs
@@ -11,7 +11,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Cmdlet used to write a collection of formatting directives to an XML file.
///
- [Cmdlet(VerbsData.Export, "FormatData", DefaultParameterSetName = "ByPath", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=144302")]
+ [Cmdlet(VerbsData.Export, "FormatData", DefaultParameterSetName = "ByPath", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096834")]
public class ExportFormatDataCommand : PSCmdlet
{
private ExtendedTypeDefinition[] _typeDefinition;
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/format-hex/Format-Hex.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/format-hex/Format-Hex.cs
index 810534a9ffd..9a6fae44665 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/format-hex/Format-Hex.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/format-hex/Format-Hex.cs
@@ -16,7 +16,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Displays the hexadecimal equivalent of the input data.
///
- [Cmdlet(VerbsCommon.Format, "Hex", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=526919")]
+ [Cmdlet(VerbsCommon.Format, "Hex", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2096611")]
[OutputType(typeof(ByteCollection))]
[Alias("fhx")]
public sealed class FormatHex : PSCmdlet
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/format-list/Format-List.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/format-list/Format-List.cs
index e0f5e13c712..a6d68b89ca8 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/format-list/Format-List.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/format-list/Format-List.cs
@@ -10,7 +10,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Implementation for the format-table command.
///
- [Cmdlet(VerbsCommon.Format, "List", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113302")]
+ [Cmdlet(VerbsCommon.Format, "List", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096928")]
public class FormatListCommand : OuterFormatTableAndListBase
{
///
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/format-object/Format-Object.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/format-object/Format-Object.cs
index 7d789539e70..a7cc58e38a8 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/format-object/Format-Object.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/format-object/Format-Object.cs
@@ -10,7 +10,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Implementation for the format-custom command. It just calls the formatting engine on complex shape.
///
- [Cmdlet(VerbsCommon.Format, "Custom", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113301")]
+ [Cmdlet(VerbsCommon.Format, "Custom", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096929")]
public class FormatCustomCommand : OuterFormatShapeCommandBase
{
///
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/format-table/Format-Table.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/format-table/Format-Table.cs
index d066ee844e8..dcd256d4962 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/format-table/Format-Table.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/format-table/Format-Table.cs
@@ -10,7 +10,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Implementation for the format-table command.
///
- [Cmdlet(VerbsCommon.Format, "Table", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113303")]
+ [Cmdlet(VerbsCommon.Format, "Table", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096703")]
public class FormatTableCommand : OuterFormatTableBase
{
///
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/format-wide/Format-Wide.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/format-wide/Format-Wide.cs
index e50331c8eec..a0c12236e96 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/format-wide/Format-Wide.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/format-wide/Format-Wide.cs
@@ -13,7 +13,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Implementation for the format-table command.
///
- [Cmdlet(VerbsCommon.Format, "Wide", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113304")]
+ [Cmdlet(VerbsCommon.Format, "Wide", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096930")]
public class FormatWideCommand : OuterFormatShapeCommandBase
{
///
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/out-file/Out-File.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/out-file/Out-File.cs
index 5c729d177a5..3efd88dbb31 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/out-file/Out-File.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/out-file/Out-File.cs
@@ -23,7 +23,7 @@ internal static FileMode Convert(OpenMode openMode)
///
/// Implementation for the out-file command.
///
- [Cmdlet(VerbsData.Out, "File", SupportsShouldProcess = true, DefaultParameterSetName = "ByPath", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113363")]
+ [Cmdlet(VerbsData.Out, "File", SupportsShouldProcess = true, DefaultParameterSetName = "ByPath", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096621")]
public class OutFileCommand : FrontEndCommandBase
{
///
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/out-string/Out-String.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/out-string/Out-String.cs
index e5284986a21..541912598b7 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/out-string/Out-String.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/FormatAndOutput/out-string/Out-String.cs
@@ -13,7 +13,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Implementation for the out-string command.
///
- [Cmdlet(VerbsData.Out, "String", DefaultParameterSetName = "NoNewLineFormatting", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113368", RemotingCapability = RemotingCapability.None)]
+ [Cmdlet(VerbsData.Out, "String", DefaultParameterSetName = "NoNewLineFormatting", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097024", RemotingCapability = RemotingCapability.None)]
[OutputType(typeof(string))]
public class OutStringCommand : FrontEndCommandBase
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Get-PSBreakpoint.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Get-PSBreakpoint.cs
index 49693b16b41..f04f66d4884 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Get-PSBreakpoint.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Get-PSBreakpoint.cs
@@ -25,9 +25,9 @@ public enum BreakpointType
};
///
- /// This class implements Remove-PSBreakpoint.
+ /// This class implements Get-PSBreakpoint.
///
- [Cmdlet(VerbsCommon.Get, "PSBreakpoint", DefaultParameterSetName = "Script", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113325")]
+ [Cmdlet(VerbsCommon.Get, "PSBreakpoint", DefaultParameterSetName = "Script", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097108")]
[OutputType(typeof(Breakpoint))]
public class GetPSBreakpointCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Get-PSCallStack.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Get-PSCallStack.cs
index 7f7df6a0444..9b451f4983f 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Get-PSCallStack.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Get-PSCallStack.cs
@@ -8,7 +8,7 @@ namespace Microsoft.PowerShell.Commands
///
/// This class implements Get-PSCallStack.
///
- [Cmdlet(VerbsCommon.Get, "PSCallStack", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113326")]
+ [Cmdlet(VerbsCommon.Get, "PSCallStack", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096705")]
[OutputType(typeof(CallStackFrame))]
public class GetPSCallStackCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetAliasCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetAliasCommand.cs
index e080803e39d..3ce9fcb9d8c 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetAliasCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetAliasCommand.cs
@@ -13,7 +13,7 @@ namespace Microsoft.PowerShell.Commands
///
/// The implementation of the "get-alias" cmdlet.
///
- [Cmdlet(VerbsCommon.Get, "Alias", DefaultParameterSetName = "Default", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113306")]
+ [Cmdlet(VerbsCommon.Get, "Alias", DefaultParameterSetName = "Default", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096702")]
[OutputType(typeof(AliasInfo))]
public class GetAliasCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetCultureCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetCultureCommand.cs
index e1fa4188981..81ba7c535d7 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetCultureCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetCultureCommand.cs
@@ -14,7 +14,7 @@ namespace Microsoft.PowerShell.Commands
/// - culture by name
/// - list of all supported cultures.
///
- [Cmdlet(VerbsCommon.Get, "Culture", DefaultParameterSetName = CurrentCultureParameterSet, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113312")]
+ [Cmdlet(VerbsCommon.Get, "Culture", DefaultParameterSetName = CurrentCultureParameterSet, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097017")]
[OutputType(typeof(System.Globalization.CultureInfo))]
public sealed class GetCultureCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetDateCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetDateCommand.cs
index 0d0c317b970..066497950aa 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetDateCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetDateCommand.cs
@@ -14,7 +14,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Implementation for the get-date command.
///
- [Cmdlet(VerbsCommon.Get, "Date", DefaultParameterSetName = "net", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113313")]
+ [Cmdlet(VerbsCommon.Get, "Date", DefaultParameterSetName = "net", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096615")]
[OutputType(typeof(string), ParameterSetName = new string[] { "UFormat", "net" })]
[OutputType(typeof(DateTime), ParameterSetName = new string[] { "net" })]
public sealed class GetDateCommand : Cmdlet
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetEventCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetEventCommand.cs
index 32668b34353..d6ae515ad56 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetEventCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetEventCommand.cs
@@ -10,7 +10,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Gets events from the event queue.
///
- [Cmdlet(VerbsCommon.Get, "Event", DefaultParameterSetName = "BySource", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113453")]
+ [Cmdlet(VerbsCommon.Get, "Event", DefaultParameterSetName = "BySource", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097014")]
[OutputType(typeof(PSEventArgs))]
public class GetEventCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetEventSubscriberCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetEventSubscriberCommand.cs
index b1c1eb09b1e..c5f25e742d7 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetEventSubscriberCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetEventSubscriberCommand.cs
@@ -10,7 +10,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Lists all event subscribers.
///
- [Cmdlet(VerbsCommon.Get, "EventSubscriber", DefaultParameterSetName = "BySource", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135155")]
+ [Cmdlet(VerbsCommon.Get, "EventSubscriber", DefaultParameterSetName = "BySource", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096607")]
[OutputType(typeof(PSEventSubscriber))]
public class GetEventSubscriberCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetHostCmdlet.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetHostCmdlet.cs
index 637bb85f437..b2ffebcd164 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetHostCmdlet.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetHostCmdlet.cs
@@ -11,7 +11,7 @@ namespace Microsoft.PowerShell.Commands
/// Writes the PSHost object to the success stream.
///
- [Cmdlet(VerbsCommon.Get, "Host", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113318", RemotingCapability = RemotingCapability.None)]
+ [Cmdlet(VerbsCommon.Get, "Host", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097110", RemotingCapability = RemotingCapability.None)]
[OutputType(typeof(System.Management.Automation.Host.PSHost))]
public
class GetHostCommand : PSCmdlet
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetMember.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetMember.cs
index a40ccf798b1..4831200555f 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetMember.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetMember.cs
@@ -57,7 +57,7 @@ public MemberDefinition(string typeName, string name, PSMemberTypes memberType,
///
/// This class implements get-member command.
///
- [Cmdlet(VerbsCommon.Get, "Member", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113322", RemotingCapability = RemotingCapability.None)]
+ [Cmdlet(VerbsCommon.Get, "Member", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096704", RemotingCapability = RemotingCapability.None)]
[OutputType(typeof(MemberDefinition))]
public class GetMemberCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetRandomCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetRandomCommand.cs
index 9ff9a933604..6fa3993ea47 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetRandomCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetRandomCommand.cs
@@ -20,7 +20,7 @@ namespace Microsoft.PowerShell.Commands
///
///
[Cmdlet(VerbsCommon.Get, "Random", DefaultParameterSetName = GetRandomCommand.RandomNumberParameterSet,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113446", RemotingCapability = RemotingCapability.None)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097016", RemotingCapability = RemotingCapability.None)]
[OutputType(typeof(Int32), typeof(Int64), typeof(double))]
public class GetRandomCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetRunspaceCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetRunspaceCommand.cs
index e388e6609ec..4d6cdeb3244 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetRunspaceCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetRunspaceCommand.cs
@@ -15,7 +15,7 @@ namespace Microsoft.PowerShell.Commands
/// This cmdlet returns runspaces in the PowerShell session.
///
[Cmdlet(VerbsCommon.Get, "Runspace", DefaultParameterSetName = GetRunspaceCommand.NameParameterSet,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=403730")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096616")]
[OutputType(typeof(Runspace))]
public sealed class GetRunspaceCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetUICultureCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetUICultureCommand.cs
index 37a0a80bd7f..5b50efd978d 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetUICultureCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetUICultureCommand.cs
@@ -8,7 +8,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Returns the thread's current UI culture.
///
- [Cmdlet(VerbsCommon.Get, "UICulture", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113334")]
+ [Cmdlet(VerbsCommon.Get, "UICulture", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096613")]
[OutputType(typeof(System.Globalization.CultureInfo))]
public sealed class GetUICultureCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetUnique.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetUnique.cs
index baf6f16bff0..b2a45626b27 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetUnique.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetUnique.cs
@@ -11,7 +11,7 @@ namespace Microsoft.PowerShell.Commands
///
///
[Cmdlet(VerbsCommon.Get, "Unique", DefaultParameterSetName = "AsString",
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113335", RemotingCapability = RemotingCapability.None)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097028", RemotingCapability = RemotingCapability.None)]
public sealed class GetUniqueCommand : PSCmdlet
{
#region Parameters
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetVerbCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetVerbCommand.cs
index b661d67f4af..4f00c11d6ee 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetVerbCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/GetVerbCommand.cs
@@ -12,7 +12,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Implementation of the Get Verb Command.
///
- [Cmdlet(VerbsCommon.Get, "Verb", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=160712")]
+ [Cmdlet(VerbsCommon.Get, "Verb", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097026")]
[OutputType(typeof(VerbInfo))]
public class GetVerbCommand : Cmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Group-Object.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Group-Object.cs
index 2759083121e..bb3f9a0bf3e 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Group-Object.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Group-Object.cs
@@ -211,7 +211,7 @@ public ArrayList Values
///
/// Group-Object implementation.
///
- [Cmdlet(VerbsData.Group, "Object", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113338", RemotingCapability = RemotingCapability.None)]
+ [Cmdlet(VerbsData.Group, "Object", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096619", RemotingCapability = RemotingCapability.None)]
[OutputType(typeof(Hashtable), typeof(GroupInfo))]
public class GroupObjectCommand : ObjectBase
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ImplicitRemotingCommands.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ImplicitRemotingCommands.cs
index 17a6f3f540e..b36916ce772 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ImplicitRemotingCommands.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ImplicitRemotingCommands.cs
@@ -29,7 +29,7 @@ namespace Microsoft.PowerShell.Commands
/// This class implements Export-PSSession cmdlet.
/// Spec: TBD.
///
- [Cmdlet(VerbsData.Export, "PSSession", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135213")]
+ [Cmdlet(VerbsData.Export, "PSSession", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096604")]
[OutputType(typeof(FileInfo))]
public sealed class ExportPSSessionCommand : ImplicitRemotingCommandBase
{
@@ -152,7 +152,7 @@ protected override void BeginProcessing()
/// This class implements Import-PSSession cmdlet.
/// Spec: http://cmdletdesigner/SpecViewer/Default.aspx?Project=PowerShell&Cmdlet=Import-Command .
///
- [Cmdlet(VerbsData.Import, "PSSession", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135221")]
+ [Cmdlet(VerbsData.Import, "PSSession", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096712")]
[OutputType(typeof(PSModuleInfo))]
public sealed class ImportPSSessionCommand : ImplicitRemotingCommandBase
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Import-LocalizedData.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Import-LocalizedData.cs
index 2087676b0e3..1f64879df51 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Import-LocalizedData.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Import-LocalizedData.cs
@@ -13,7 +13,7 @@ namespace Microsoft.PowerShell.Commands
///
/// The implementation of the "import-localizeddata" cmdlet.
///
- [Cmdlet(VerbsData.Import, "LocalizedData", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113342")]
+ [Cmdlet(VerbsData.Import, "LocalizedData", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096710")]
public sealed class ImportLocalizedData : PSCmdlet
{
#region Parameters
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ImportAliasCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ImportAliasCommand.cs
index 8ccd9a3a834..f2db97cdd51 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ImportAliasCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ImportAliasCommand.cs
@@ -14,7 +14,7 @@ namespace Microsoft.PowerShell.Commands
///
/// The implementation of the "import-alias" cmdlet.
///
- [Cmdlet(VerbsData.Import, "Alias", SupportsShouldProcess = true, DefaultParameterSetName = "ByPath", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113339")]
+ [Cmdlet(VerbsData.Import, "Alias", SupportsShouldProcess = true, DefaultParameterSetName = "ByPath", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097125")]
[OutputType(typeof(AliasInfo))]
public class ImportAliasCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/InvokeExpressionCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/InvokeExpressionCommand.cs
index df80155c4c4..a4abba2dbd5 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/InvokeExpressionCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/InvokeExpressionCommand.cs
@@ -10,7 +10,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Class implementing Invoke-Expression.
///
- [Cmdlet(VerbsLifecycle.Invoke, "Expression", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113343")]
+ [Cmdlet(VerbsLifecycle.Invoke, "Expression", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097030")]
public sealed
class
InvokeExpressionCommand : PSCmdlet
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/MatchString.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/MatchString.cs
index e88aa733bb5..ff468ba422e 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/MatchString.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/MatchString.cs
@@ -394,7 +394,7 @@ internal MatchInfo Clone()
///
/// A cmdlet to search through strings and files for particular patterns.
///
- [Cmdlet(VerbsCommon.Select, "String", DefaultParameterSetName = ParameterSetFile, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113388")]
+ [Cmdlet(VerbsCommon.Select, "String", DefaultParameterSetName = ParameterSetFile, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097119")]
[OutputType(typeof(bool), typeof(MatchInfo), ParameterSetName = new[] { ParameterSetFile, ParameterSetObject, ParameterSetLiteralFile })]
[OutputType(typeof(string), ParameterSetName = new[] { ParameterSetFileRaw, ParameterSetObjectRaw, ParameterSetLiteralFileRaw })]
public sealed class SelectStringCommand : PSCmdlet
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Measure-Object.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Measure-Object.cs
index 687b1cdc9a7..c668e41b98d 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Measure-Object.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Measure-Object.cs
@@ -151,7 +151,7 @@ public TextMeasureInfo()
/// Measure object cmdlet.
///
[Cmdlet(VerbsDiagnostic.Measure, "Object", DefaultParameterSetName = GenericParameterSet,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113349", RemotingCapability = RemotingCapability.None)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096617", RemotingCapability = RemotingCapability.None)]
[OutputType(typeof(GenericMeasureInfo), typeof(TextMeasureInfo), typeof(GenericObjectMeasureInfo))]
public sealed class MeasureObjectCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/New-Object.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/New-Object.cs
index a64b3c2dfd4..9596df44e79 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/New-Object.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/New-Object.cs
@@ -22,7 +22,7 @@
namespace Microsoft.PowerShell.Commands
{
/// Create a new .net object
- [Cmdlet(VerbsCommon.New, "Object", DefaultParameterSetName = netSetName, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113355")]
+ [Cmdlet(VerbsCommon.New, "Object", DefaultParameterSetName = netSetName, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096620")]
public sealed class NewObjectCommand : PSCmdlet
{
#region parameters
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/NewAliasCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/NewAliasCommand.cs
index f810f555d97..cbf09d0087e 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/NewAliasCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/NewAliasCommand.cs
@@ -11,7 +11,7 @@ namespace Microsoft.PowerShell.Commands
/// The implementation of the "new-alias" cmdlet.
///
[Cmdlet(VerbsCommon.New, "Alias", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Low,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113352")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097022")]
[OutputType(typeof(AliasInfo))]
public class NewAliasCommand : WriteAliasCommandBase
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/NewEventCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/NewEventCommand.cs
index 3b6b0d6f765..198d2c31048 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/NewEventCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/NewEventCommand.cs
@@ -10,7 +10,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Generates a new event notification.
///
- [Cmdlet(VerbsCommon.New, "Event", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135234")]
+ [Cmdlet(VerbsCommon.New, "Event", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096708")]
[OutputType(typeof(PSEventArgs))]
public class NewEventCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/NewGuidCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/NewGuidCommand.cs
index 289fba78039..badbaa21b4d 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/NewGuidCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/NewGuidCommand.cs
@@ -9,7 +9,7 @@ namespace Microsoft.PowerShell.Commands
///
/// The implementation of the "new-guid" cmdlet.
///
- [Cmdlet(VerbsCommon.New, "Guid", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=526920")]
+ [Cmdlet(VerbsCommon.New, "Guid", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2097130")]
[OutputType(typeof(Guid))]
public class NewGuidCommand : Cmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/NewTemporaryFileCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/NewTemporaryFileCommand.cs
index 47925b8b815..f7a5bd63afc 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/NewTemporaryFileCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/NewTemporaryFileCommand.cs
@@ -11,7 +11,7 @@ namespace Microsoft.PowerShell.Commands
/// The implementation of the "New-TemporaryFile" cmdlet.
///
[Cmdlet(VerbsCommon.New, "TemporaryFile", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Low,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkId=821836")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2097032")]
[OutputType(typeof(System.IO.FileInfo))]
public class NewTemporaryFileCommand : Cmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/NewTimeSpanCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/NewTimeSpanCommand.cs
index 1cbbce4e286..b75932b869d 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/NewTimeSpanCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/NewTimeSpanCommand.cs
@@ -12,7 +12,7 @@ namespace Microsoft.PowerShell.Commands
/// Implementation for the new-timespan command.
///
[Cmdlet(VerbsCommon.New, "TimeSpan", DefaultParameterSetName = "Date",
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113360", RemotingCapability = RemotingCapability.None)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096709", RemotingCapability = RemotingCapability.None)]
[OutputType(typeof(TimeSpan))]
public sealed class NewTimeSpanCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ReadConsoleCmdlet.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ReadConsoleCmdlet.cs
index 49af92fffd4..205b61fcd8d 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ReadConsoleCmdlet.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ReadConsoleCmdlet.cs
@@ -17,7 +17,7 @@ namespace Microsoft.PowerShell.Commands
/// Retrieves input from the host virtual console and writes it to the pipeline output.
///
- [Cmdlet(VerbsCommunications.Read, "Host", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113371")]
+ [Cmdlet(VerbsCommunications.Read, "Host", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096610")]
[OutputType(typeof(string), typeof(SecureString))]
public sealed class ReadHostCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/RegisterObjectEventCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/RegisterObjectEventCommand.cs
index 430ee1c7154..6229cd42e84 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/RegisterObjectEventCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/RegisterObjectEventCommand.cs
@@ -9,7 +9,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Registers for an event on an object.
///
- [Cmdlet(VerbsLifecycle.Register, "ObjectEvent", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135244")]
+ [Cmdlet(VerbsLifecycle.Register, "ObjectEvent", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096714")]
[OutputType(typeof(PSEventJob))]
public class RegisterObjectEventCommand : ObjectEventRegistrationBase
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/RegisterPSEventCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/RegisterPSEventCommand.cs
index b182f694cbc..c634779cb78 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/RegisterPSEventCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/RegisterPSEventCommand.cs
@@ -9,7 +9,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Registers for an event coming from the engine.
///
- [Cmdlet(VerbsLifecycle.Register, "EngineEvent", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135243")]
+ [Cmdlet(VerbsLifecycle.Register, "EngineEvent", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097128")]
[OutputType(typeof(PSEventJob))]
public class RegisterEngineEventCommand : ObjectEventRegistrationBase
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Remove-PSBreakpoint.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Remove-PSBreakpoint.cs
index a02f9dec059..c3ec16fa0b6 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Remove-PSBreakpoint.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Remove-PSBreakpoint.cs
@@ -9,7 +9,7 @@ namespace Microsoft.PowerShell.Commands
/// This class implements Remove-PSBreakpoint.
///
[Cmdlet(VerbsCommon.Remove, "PSBreakpoint", SupportsShouldProcess = true, DefaultParameterSetName = "Breakpoint",
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113375")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097134")]
public class RemovePSBreakpointCommand : PSBreakpointCommandBase
{
///
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/RemoveEventCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/RemoveEventCommand.cs
index 83aa745ed2c..0ec00f82236 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/RemoveEventCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/RemoveEventCommand.cs
@@ -9,7 +9,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Removes an event from the event queue.
///
- [Cmdlet(VerbsCommon.Remove, "Event", SupportsShouldProcess = true, DefaultParameterSetName = "BySource", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135247")]
+ [Cmdlet(VerbsCommon.Remove, "Event", SupportsShouldProcess = true, DefaultParameterSetName = "BySource", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096715")]
public class RemoveEventCommand : PSCmdlet
{
#region parameters
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Select-Object.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Select-Object.cs
index eaf065eaaf3..8d97952d610 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Select-Object.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Select-Object.cs
@@ -67,7 +67,7 @@ protected override void SetEntries()
///
///
[Cmdlet(VerbsCommon.Select, "Object", DefaultParameterSetName = "DefaultParameter",
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113387", RemotingCapability = RemotingCapability.None)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096716", RemotingCapability = RemotingCapability.None)]
public sealed class SelectObjectCommand : PSCmdlet
{
#region Command Line Switches
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Send-MailMessage.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Send-MailMessage.cs
index 5e91d0fdc43..74861700732 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Send-MailMessage.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Send-MailMessage.cs
@@ -15,7 +15,7 @@ namespace Microsoft.PowerShell.Commands
/// Implementation for the Send-MailMessage command.
///
[Obsolete("This cmdlet does not guarantee secure connections to SMTP servers. While there is no immediate replacement available in PowerShell, we recommend you do not use Send-MailMessage at this time. See https://aka.ms/SendMailMessage for more information.")]
- [Cmdlet(VerbsCommunications.Send, "MailMessage", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135256")]
+ [Cmdlet(VerbsCommunications.Send, "MailMessage", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097115")]
public sealed class SendMailMessage : PSCmdlet
{
#region Command Line Parameters
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Set-PSBreakpoint.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Set-PSBreakpoint.cs
index 30e9ae7142d..230aed4f604 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Set-PSBreakpoint.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Set-PSBreakpoint.cs
@@ -13,7 +13,7 @@ namespace Microsoft.PowerShell.Commands
///
/// This class implements Set-PSBreakpoint command.
///
- [Cmdlet(VerbsCommon.Set, "PSBreakpoint", DefaultParameterSetName = LineParameterSetName, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113449")]
+ [Cmdlet(VerbsCommon.Set, "PSBreakpoint", DefaultParameterSetName = LineParameterSetName, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096623")]
[OutputType(typeof(VariableBreakpoint), typeof(CommandBreakpoint), typeof(LineBreakpoint))]
public class SetPSBreakpointCommand : PSBreakpointCreationBase
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/SetAliasCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/SetAliasCommand.cs
index 0ceb6a5b1c9..eda5028b373 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/SetAliasCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/SetAliasCommand.cs
@@ -10,7 +10,7 @@ namespace Microsoft.PowerShell.Commands
///
/// The implementation of the "set-alias" cmdlet.
///
- [Cmdlet(VerbsCommon.Set, "Alias", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113390")]
+ [Cmdlet(VerbsCommon.Set, "Alias", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096625")]
[OutputType(typeof(AliasInfo))]
public class SetAliasCommand : WriteAliasCommandBase
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/SetDateCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/SetDateCommand.cs
index a03adbe97ff..3382ec5cdb0 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/SetDateCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/SetDateCommand.cs
@@ -16,7 +16,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Implementation for the set-date command.
///
- [Cmdlet(VerbsCommon.Set, "Date", DefaultParameterSetName = "Date", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113393")]
+ [Cmdlet(VerbsCommon.Set, "Date", DefaultParameterSetName = "Date", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097133")]
[OutputType(typeof(DateTime))]
public sealed class SetDateCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ShowMarkdownCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ShowMarkdownCommand.cs
index beb35197131..65fb48e4126 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ShowMarkdownCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/ShowMarkdownCommand.cs
@@ -23,7 +23,7 @@ namespace Microsoft.PowerShell.Commands
[Cmdlet(
VerbsCommon.Show, "Markdown",
DefaultParameterSetName = "Path",
- HelpUri = "https://go.microsoft.com/fwlink/?linkid=2006266")]
+ HelpUri = "https://go.microsoft.com/fwlink/?linkid=2102329")]
[OutputType(typeof(string))]
public class ShowMarkdownCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Sort-Object.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Sort-Object.cs
index 6225c6e471d..f2847b3d50e 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Sort-Object.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Sort-Object.cs
@@ -10,7 +10,7 @@ namespace Microsoft.PowerShell.Commands
///
[Cmdlet("Sort",
"Object",
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113403",
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097038",
DefaultParameterSetName = "Default",
RemotingCapability = RemotingCapability.None)]
public sealed class SortObjectCommand : OrderObjectBase
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/StartSleepCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/StartSleepCommand.cs
index cd71a988bed..0e62652842a 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/StartSleepCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/StartSleepCommand.cs
@@ -12,7 +12,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Suspend shell, script, or runspace activity for the specified period of time.
///
- [Cmdlet(VerbsLifecycle.Start, "Sleep", DefaultParameterSetName = "Seconds", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113407")]
+ [Cmdlet(VerbsLifecycle.Start, "Sleep", DefaultParameterSetName = "Seconds", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097041")]
public sealed class StartSleepCommand : PSCmdlet, IDisposable
{
private bool _disposed = false;
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Tee-Object.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Tee-Object.cs
index ec861aa1e35..3866c1202ad 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Tee-Object.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Tee-Object.cs
@@ -11,7 +11,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Class for Tee-object implementation.
///
- [Cmdlet("Tee", "Object", DefaultParameterSetName = "File", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113417")]
+ [Cmdlet("Tee", "Object", DefaultParameterSetName = "File", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097034")]
public sealed class TeeObjectCommand : PSCmdlet, IDisposable
{
///
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/TimeExpressionCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/TimeExpressionCommand.cs
index c1a8433d02c..3e45cf8d7f7 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/TimeExpressionCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/TimeExpressionCommand.cs
@@ -15,7 +15,7 @@ namespace Microsoft.PowerShell.Commands
/// Implements a cmdlet that applies a script block
/// to each element of the pipeline.
///
- [Cmdlet(VerbsDiagnostic.Measure, "Command", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113348", RemotingCapability = RemotingCapability.None)]
+ [Cmdlet(VerbsDiagnostic.Measure, "Command", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097029", RemotingCapability = RemotingCapability.None)]
[OutputType(typeof(TimeSpan))]
public sealed class MeasureCommandCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/UnblockFile.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/UnblockFile.cs
index 0f1ff4af371..2cc929b4fc5 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/UnblockFile.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/UnblockFile.cs
@@ -20,7 +20,7 @@ namespace Microsoft.PowerShell.Commands
{
/// Removes the Zone.Identifier stream from a file.
[Cmdlet(VerbsSecurity.Unblock, "File", DefaultParameterSetName = "ByPath", SupportsShouldProcess = true,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=217450")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097033")]
public sealed class UnblockFileCommand : PSCmdlet
{
///
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/UnregisterEventCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/UnregisterEventCommand.cs
index 23adc57cdee..d6d9e4c222a 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/UnregisterEventCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/UnregisterEventCommand.cs
@@ -9,7 +9,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Unregisters from an event on an object.
///
- [Cmdlet(VerbsLifecycle.Unregister, "Event", SupportsShouldProcess = true, DefaultParameterSetName = "BySource", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135269")]
+ [Cmdlet(VerbsLifecycle.Unregister, "Event", SupportsShouldProcess = true, DefaultParameterSetName = "BySource", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097037")]
public class UnregisterEventCommand : PSCmdlet
{
#region parameters
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Update-TypeData.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Update-TypeData.cs
index ee5f40856c4..8131fbcded6 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Update-TypeData.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Update-TypeData.cs
@@ -19,7 +19,7 @@ namespace Microsoft.PowerShell.Commands
/// This class implements update-typeData command.
///
[Cmdlet(VerbsData.Update, "TypeData", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Low,
- DefaultParameterSetName = FileParameterSet, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113421")]
+ DefaultParameterSetName = FileParameterSet, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097131")]
public class UpdateTypeDataCommand : UpdateData
{
#region dynamic type set
@@ -886,7 +886,7 @@ private void ProcessTypeFiles()
/// This class implements update-typeData command.
///
[Cmdlet(VerbsData.Update, "FormatData", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Low,
- DefaultParameterSetName = FileParameterSet, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113420")]
+ DefaultParameterSetName = FileParameterSet, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097135")]
public class UpdateFormatDataCommand : UpdateData
{
///
@@ -1039,7 +1039,7 @@ protected override void ProcessRecord()
/// Remove-TypeData cmdlet.
///
[Cmdlet(VerbsCommon.Remove, "TypeData", SupportsShouldProcess = true, DefaultParameterSetName = RemoveTypeDataSet,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=217038")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096622")]
public class RemoveTypeDataCommand : PSCmdlet
{
private const string RemoveTypeSet = "RemoveTypeSet";
@@ -1269,7 +1269,7 @@ private ErrorRecord NewError(string errorId, string template, object targetObjec
///
/// Get-TypeData cmdlet.
///
- [Cmdlet(VerbsCommon.Get, "TypeData", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=217033")]
+ [Cmdlet(VerbsCommon.Get, "TypeData", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097018")]
[OutputType(typeof(System.Management.Automation.PSObject))]
public class GetTypeDataCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Var.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Var.cs
index 052f817c305..2ad4b0c04c6 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Var.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Var.cs
@@ -240,7 +240,7 @@ internal List GetMatchingVariables(string name, string lookupScope,
///
/// Implements get-variable command.
///
- [Cmdlet(VerbsCommon.Get, "Variable", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113336")]
+ [Cmdlet(VerbsCommon.Get, "Variable", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096711")]
[OutputType(typeof(PSVariable))]
public class GetVariableCommand : VariableCommandBase
{
@@ -378,7 +378,7 @@ protected override void ProcessRecord()
/// Class implementing new-variable command.
///
[Cmdlet(VerbsCommon.New, "Variable", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Low,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113361")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097121")]
public sealed class NewVariableCommand : VariableCommandBase
{
#region parameters
@@ -570,7 +570,7 @@ protected override void ProcessRecord()
///
/// This class implements set-variable command.
///
- [Cmdlet(VerbsCommon.Set, "Variable", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113401")]
+ [Cmdlet(VerbsCommon.Set, "Variable", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096624")]
[OutputType(typeof(PSVariable))]
public sealed class SetVariableCommand : VariableCommandBase
{
@@ -1033,7 +1033,7 @@ private void SetVariable(string[] varNames, object varValue)
///
/// The Remove-Variable cmdlet implementation.
///
- [Cmdlet(VerbsCommon.Remove, "Variable", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113380")]
+ [Cmdlet(VerbsCommon.Remove, "Variable", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097123")]
public sealed class RemoveVariableCommand : VariableCommandBase
{
#region parameters
@@ -1184,7 +1184,7 @@ protected override void ProcessRecord()
///
/// This class implements set-variable command.
///
- [Cmdlet(VerbsCommon.Clear, "Variable", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113285")]
+ [Cmdlet(VerbsCommon.Clear, "Variable", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096923")]
[OutputType(typeof(PSVariable))]
public sealed class ClearVariableCommand : VariableCommandBase
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WaitEventCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WaitEventCommand.cs
index 9de9b5084d7..5fbfb6f8763 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WaitEventCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WaitEventCommand.cs
@@ -10,7 +10,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Waits for a given event to arrive.
///
- [Cmdlet(VerbsLifecycle.Wait, "Event", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135276")]
+ [Cmdlet(VerbsLifecycle.Wait, "Event", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097042")]
[OutputType(typeof(PSEventArgs))]
public class WaitEventCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WebCmdlet/Common/InvokeRestMethodCommand.Common.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WebCmdlet/Common/InvokeRestMethodCommand.Common.cs
index b82d47952da..344323cd939 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WebCmdlet/Common/InvokeRestMethodCommand.Common.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WebCmdlet/Common/InvokeRestMethodCommand.Common.cs
@@ -369,7 +369,7 @@ public override void Write(byte[] buffer, int offset, int count)
/// Intended to work against the wide spectrum of "RESTful" web services
/// currently deployed across the web.
///
- [Cmdlet(VerbsLifecycle.Invoke, "RestMethod", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=217034", DefaultParameterSetName = "StandardMethod")]
+ [Cmdlet(VerbsLifecycle.Invoke, "RestMethod", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096706", DefaultParameterSetName = "StandardMethod")]
public partial class InvokeRestMethodCommand : WebRequestPSCmdlet
{
#region Virtual Method Overrides
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WebCmdlet/ConvertFromJsonCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WebCmdlet/ConvertFromJsonCommand.cs
index 6433e3dc614..518613ea0e4 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WebCmdlet/ConvertFromJsonCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WebCmdlet/ConvertFromJsonCommand.cs
@@ -11,7 +11,7 @@ namespace Microsoft.PowerShell.Commands
/// The ConvertFrom-Json command.
/// This command converts a Json string representation to a JsonObject.
///
- [Cmdlet(VerbsData.ConvertFrom, "Json", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=217031", RemotingCapability = RemotingCapability.None)]
+ [Cmdlet(VerbsData.ConvertFrom, "Json", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096606", RemotingCapability = RemotingCapability.None)]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly")]
public class ConvertFromJsonCommand : Cmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WebCmdlet/ConvertToJsonCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WebCmdlet/ConvertToJsonCommand.cs
index 5d1cf23580b..8ebbabee593 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WebCmdlet/ConvertToJsonCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WebCmdlet/ConvertToJsonCommand.cs
@@ -15,7 +15,7 @@ namespace Microsoft.PowerShell.Commands
/// The ConvertTo-Json command.
/// This command converts an object to a Json string representation.
///
- [Cmdlet(VerbsData.ConvertTo, "Json", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=217032", RemotingCapability = RemotingCapability.None)]
+ [Cmdlet(VerbsData.ConvertTo, "Json", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096925", RemotingCapability = RemotingCapability.None)]
public class ConvertToJsonCommand : PSCmdlet
{
///
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WebCmdlet/CoreCLR/InvokeWebRequestCommand.CoreClr.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WebCmdlet/CoreCLR/InvokeWebRequestCommand.CoreClr.cs
index 0a5441faef5..1e98d253745 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WebCmdlet/CoreCLR/InvokeWebRequestCommand.CoreClr.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WebCmdlet/CoreCLR/InvokeWebRequestCommand.CoreClr.cs
@@ -12,7 +12,7 @@ namespace Microsoft.PowerShell.Commands
/// The Invoke-WebRequest command.
/// This command makes an HTTP or HTTPS request to a web server and returns the results.
///
- [Cmdlet(VerbsLifecycle.Invoke, "WebRequest", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=217035", DefaultParameterSetName = "StandardMethod")]
+ [Cmdlet(VerbsLifecycle.Invoke, "WebRequest", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097126", DefaultParameterSetName = "StandardMethod")]
public class InvokeWebRequestCommand : WebRequestPSCmdlet
{
#region Virtual Method Overrides
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Write-Object.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Write-Object.cs
index 376f30f516a..e24cc35702b 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Write-Object.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Write-Object.cs
@@ -9,7 +9,7 @@ namespace Microsoft.PowerShell.Commands
///
/// This class implements Write-Output command.
///
- [Cmdlet(VerbsCommunications.Write, "Output", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113427", RemotingCapability = RemotingCapability.None)]
+ [Cmdlet(VerbsCommunications.Write, "Output", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097117", RemotingCapability = RemotingCapability.None)]
public sealed class WriteOutputCommand : PSCmdlet
{
///
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Write.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Write.cs
index b0f60972b09..727eaa9d779 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Write.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/Write.cs
@@ -12,7 +12,7 @@ namespace Microsoft.PowerShell.Commands
///
/// This class implements Write-Debug command.
///
- [Cmdlet(VerbsCommunications.Write, "Debug", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113424", RemotingCapability = RemotingCapability.None)]
+ [Cmdlet(VerbsCommunications.Write, "Debug", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097132", RemotingCapability = RemotingCapability.None)]
public sealed class WriteDebugCommand : PSCmdlet
{
///
@@ -60,7 +60,7 @@ protected override void ProcessRecord()
///
/// This class implements Write-Verbose command.
///
- [Cmdlet(VerbsCommunications.Write, "Verbose", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113429", RemotingCapability = RemotingCapability.None)]
+ [Cmdlet(VerbsCommunications.Write, "Verbose", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097043", RemotingCapability = RemotingCapability.None)]
public sealed class WriteVerboseCommand : PSCmdlet
{
///
@@ -108,7 +108,7 @@ protected override void ProcessRecord()
///
/// This class implements Write-Warning command.
///
- [Cmdlet(VerbsCommunications.Write, "Warning", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113430", RemotingCapability = RemotingCapability.None)]
+ [Cmdlet(VerbsCommunications.Write, "Warning", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097044", RemotingCapability = RemotingCapability.None)]
public sealed class WriteWarningCommand : PSCmdlet
{
///
@@ -156,7 +156,7 @@ protected override void ProcessRecord()
///
/// This class implements Write-Information command.
///
- [Cmdlet(VerbsCommunications.Write, "Information", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=525909", RemotingCapability = RemotingCapability.None)]
+ [Cmdlet(VerbsCommunications.Write, "Information", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2097040", RemotingCapability = RemotingCapability.None)]
public sealed class WriteInformationCommand : PSCmdlet
{
///
@@ -389,7 +389,7 @@ protected override void ProcessRecord()
/// This class implements Write-Error command.
///
[Cmdlet(VerbsCommunications.Write, "Error", DefaultParameterSetName = "NoException",
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113425", RemotingCapability = RemotingCapability.None)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097039", RemotingCapability = RemotingCapability.None)]
public sealed class WriteErrorCommand : WriteOrThrowErrorCommand
{
///
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WriteConsoleCmdlet.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WriteConsoleCmdlet.cs
index 6cbd3a00c86..2b32e2acf02 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WriteConsoleCmdlet.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WriteConsoleCmdlet.cs
@@ -11,7 +11,7 @@ namespace Microsoft.PowerShell.Commands
///
/// WriteHost cmdlet.
///
- [Cmdlet(VerbsCommunications.Write, "Host", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113426", RemotingCapability = RemotingCapability.None)]
+ [Cmdlet(VerbsCommunications.Write, "Host", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097137", RemotingCapability = RemotingCapability.None)]
public sealed class WriteHostCommand : ConsoleColorCmdlet
{
///
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WriteProgressCmdlet.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WriteProgressCmdlet.cs
index eb76bdc525e..d3abb9d2285 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WriteProgressCmdlet.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/WriteProgressCmdlet.cs
@@ -11,7 +11,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Implements the write-progress cmdlet.
///
- [Cmdlet(VerbsCommunications.Write, "Progress", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113428", RemotingCapability = RemotingCapability.None)]
+ [Cmdlet(VerbsCommunications.Write, "Progress", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097036", RemotingCapability = RemotingCapability.None)]
public sealed class WriteProgressCommand : PSCmdlet
{
///
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/XmlCommands.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/XmlCommands.cs
index 73b0652101f..16e7cfd55aa 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/XmlCommands.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/XmlCommands.cs
@@ -19,7 +19,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Implementation for the Export-Clixml command.
///
- [Cmdlet(VerbsData.Export, "Clixml", SupportsShouldProcess = true, DefaultParameterSetName = "ByPath", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113297")]
+ [Cmdlet(VerbsData.Export, "Clixml", SupportsShouldProcess = true, DefaultParameterSetName = "ByPath", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096926")]
public sealed class ExportClixmlCommand : PSCmdlet, IDisposable
{
#region Command Line Parameters
@@ -275,7 +275,7 @@ private void CreateFileStream()
///
/// Implements Import-Clixml command.
///
- [Cmdlet(VerbsData.Import, "Clixml", SupportsPaging = true, DefaultParameterSetName = "ByPath", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113340")]
+ [Cmdlet(VerbsData.Import, "Clixml", SupportsPaging = true, DefaultParameterSetName = "ByPath", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096618")]
public sealed class ImportClixmlCommand : PSCmdlet, IDisposable
{
#region Command Line Parameters
@@ -363,7 +363,7 @@ protected override void StopProcessing()
/// Implementation for the convertto-xml command.
///
[Cmdlet(VerbsData.ConvertTo, "Xml", SupportsShouldProcess = false,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135204", RemotingCapability = RemotingCapability.None)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096603", RemotingCapability = RemotingCapability.None)]
[OutputType(typeof(XmlDocument), typeof(string))]
public sealed class ConvertToXmlCommand : PSCmdlet, IDisposable
{
@@ -800,7 +800,7 @@ internal void Stop()
///
///This cmdlet is used to search an xml document based on the XPath Query.
///
- [Cmdlet(VerbsCommon.Select, "Xml", DefaultParameterSetName = "Xml", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135255")]
+ [Cmdlet(VerbsCommon.Select, "Xml", DefaultParameterSetName = "Xml", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097031")]
[OutputType(typeof(SelectXmlInfo))]
public class SelectXmlCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/trace/GetTracerCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/trace/GetTracerCommand.cs
index 6b93c25cb9d..cefb4dd9744 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/trace/GetTracerCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/trace/GetTracerCommand.cs
@@ -9,7 +9,7 @@ namespace Microsoft.PowerShell.Commands
///
/// A cmdlet that gets the TraceSource instances that are instantiated in the process.
///
- [Cmdlet(VerbsCommon.Get, "TraceSource", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113333")]
+ [Cmdlet(VerbsCommon.Get, "TraceSource", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096707")]
[OutputType(typeof(PSTraceSource))]
public class GetTraceSourceCommand : TraceCommandBase
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/trace/SetTracerCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/trace/SetTracerCommand.cs
index 1cbf6f56521..032fa63006c 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/trace/SetTracerCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/trace/SetTracerCommand.cs
@@ -10,7 +10,7 @@ namespace Microsoft.PowerShell.Commands
///
/// A cmdlet that sets the properties of the TraceSwitch instances that are instantiated in the process.
///
- [Cmdlet(VerbsCommon.Set, "TraceSource", DefaultParameterSetName = "optionsSet", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113400")]
+ [Cmdlet(VerbsCommon.Set, "TraceSource", DefaultParameterSetName = "optionsSet", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097129")]
[OutputType(typeof(PSTraceSource))]
public class SetTraceSourceCommand : TraceListenerCommandBase
{
diff --git a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/trace/TraceExpressionCommand.cs b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/trace/TraceExpressionCommand.cs
index 3eec497c0c6..a3000848988 100644
--- a/src/Microsoft.PowerShell.Commands.Utility/commands/utility/trace/TraceExpressionCommand.cs
+++ b/src/Microsoft.PowerShell.Commands.Utility/commands/utility/trace/TraceExpressionCommand.cs
@@ -18,7 +18,7 @@ namespace Microsoft.PowerShell.Commands
/// A cmdlet that traces the specified categories and flags for the duration of the
/// specified expression.
///
- [Cmdlet(VerbsDiagnostic.Trace, "Command", DefaultParameterSetName = "expressionSet", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113419")]
+ [Cmdlet(VerbsDiagnostic.Trace, "Command", DefaultParameterSetName = "expressionSet", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097136")]
public class TraceCommandCommand : TraceListenerCommandBase, IDisposable
{
#region Parameters
diff --git a/src/Microsoft.PowerShell.ConsoleHost/host/msh/StartTranscriptCmdlet.cs b/src/Microsoft.PowerShell.ConsoleHost/host/msh/StartTranscriptCmdlet.cs
index ed602725cf2..399ed27a94b 100644
--- a/src/Microsoft.PowerShell.ConsoleHost/host/msh/StartTranscriptCmdlet.cs
+++ b/src/Microsoft.PowerShell.ConsoleHost/host/msh/StartTranscriptCmdlet.cs
@@ -13,7 +13,7 @@ namespace Microsoft.PowerShell.Commands
/// Implements the start-transcript cmdlet.
///
- [Cmdlet(VerbsLifecycle.Start, "Transcript", SupportsShouldProcess = true, DefaultParameterSetName = "ByPath", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113408")]
+ [Cmdlet(VerbsLifecycle.Start, "Transcript", SupportsShouldProcess = true, DefaultParameterSetName = "ByPath", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096485")]
[OutputType(typeof(string))]
public sealed class StartTranscriptCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.ConsoleHost/host/msh/StopTranscriptCmdlet.cs b/src/Microsoft.PowerShell.ConsoleHost/host/msh/StopTranscriptCmdlet.cs
index dd065963ec3..66f76157033 100644
--- a/src/Microsoft.PowerShell.ConsoleHost/host/msh/StopTranscriptCmdlet.cs
+++ b/src/Microsoft.PowerShell.ConsoleHost/host/msh/StopTranscriptCmdlet.cs
@@ -11,7 +11,7 @@ namespace Microsoft.PowerShell.Commands
/// Implements the stop-transcript cmdlet.
///
- [Cmdlet(VerbsLifecycle.Stop, "Transcript", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113415")]
+ [Cmdlet(VerbsLifecycle.Stop, "Transcript", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096798")]
[OutputType(typeof(string))]
public sealed class StopTranscriptCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Security/security/AclCommands.cs b/src/Microsoft.PowerShell.Security/security/AclCommands.cs
index 5590506f4aa..100b7dde2d1 100644
--- a/src/Microsoft.PowerShell.Security/security/AclCommands.cs
+++ b/src/Microsoft.PowerShell.Security/security/AclCommands.cs
@@ -621,7 +621,7 @@ public static string GetSddl(PSObject instance)
/// Defines the implementation of the 'get-acl' cmdlet.
/// This cmdlet gets the security descriptor of an item at the specified path.
///
- [Cmdlet(VerbsCommon.Get, "Acl", SupportsTransactions = true, DefaultParameterSetName = "ByPath", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113305")]
+ [Cmdlet(VerbsCommon.Get, "Acl", SupportsTransactions = true, DefaultParameterSetName = "ByPath", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096593")]
public sealed class GetAclCommand : SecurityDescriptorCommandsBase
{
///
@@ -901,7 +901,7 @@ protected override void ProcessRecord()
/// This cmdlet sets the security descriptor of an item at the specified path.
///
[Cmdlet(VerbsCommon.Set, "Acl", SupportsShouldProcess = true, SupportsTransactions = true, DefaultParameterSetName = "ByPath",
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113389")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096600")]
public sealed class SetAclCommand : SecurityDescriptorCommandsBase
{
private string[] _path;
diff --git a/src/Microsoft.PowerShell.Security/security/CatalogCommands.cs b/src/Microsoft.PowerShell.Security/security/CatalogCommands.cs
index dad56d9c50e..f4b1602f2a1 100644
--- a/src/Microsoft.PowerShell.Security/security/CatalogCommands.cs
+++ b/src/Microsoft.PowerShell.Security/security/CatalogCommands.cs
@@ -137,7 +137,7 @@ protected override void ProcessRecord()
/// This cmdlet generates the catalog for File or Folder.
///
[Cmdlet(VerbsCommon.New, "FileCatalog", SupportsShouldProcess = true, DefaultParameterSetName = "ByPath",
- HelpUri = "https://go.microsoft.com/fwlink/?LinkId=786749")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2096596")]
[OutputType(typeof(FileInfo))]
public sealed class NewFileCatalogCommand : CatalogCommandsBase
{
@@ -215,7 +215,7 @@ protected override void PerformAction(Collection path, string catalogFil
/// This cmdlet validates the Integrity of catalog.
///
[Cmdlet(VerbsDiagnostic.Test, "FileCatalog", SupportsShouldProcess = true, DefaultParameterSetName = "ByPath",
- HelpUri = "https://go.microsoft.com/fwlink/?LinkId=786750")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2096921")]
[OutputType(typeof(CatalogValidationStatus))]
[OutputType(typeof(CatalogInformation))]
public sealed class TestFileCatalogCommand : CatalogCommandsBase
diff --git a/src/Microsoft.PowerShell.Security/security/CertificateCommands.cs b/src/Microsoft.PowerShell.Security/security/CertificateCommands.cs
index 91b2c583818..7366bccb4d6 100644
--- a/src/Microsoft.PowerShell.Security/security/CertificateCommands.cs
+++ b/src/Microsoft.PowerShell.Security/security/CertificateCommands.cs
@@ -18,7 +18,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Defines the implementation of the get-pfxcertificate cmdlet.
///
- [Cmdlet(VerbsCommon.Get, "PfxCertificate", DefaultParameterSetName = "ByPath", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113323")]
+ [Cmdlet(VerbsCommon.Get, "PfxCertificate", DefaultParameterSetName = "ByPath", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096918")]
[OutputType(typeof(X509Certificate2))]
public sealed class GetPfxCertificateCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Security/security/CmsCommands.cs b/src/Microsoft.PowerShell.Security/security/CmsCommands.cs
index b54b17a4ff6..6a7502f7a7d 100644
--- a/src/Microsoft.PowerShell.Security/security/CmsCommands.cs
+++ b/src/Microsoft.PowerShell.Security/security/CmsCommands.cs
@@ -18,7 +18,7 @@ namespace Microsoft.PowerShell.Commands
/// This cmdlet generates a new encrypted CMS message given the
/// recipient and content supplied.
///
- [Cmdlet(VerbsSecurity.Protect, "CmsMessage", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=394373", DefaultParameterSetName = "ByContent")]
+ [Cmdlet(VerbsSecurity.Protect, "CmsMessage", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2096826", DefaultParameterSetName = "ByContent")]
[OutputType(typeof(string))]
public sealed class ProtectCmsMessageCommand : PSCmdlet
{
@@ -190,7 +190,7 @@ protected override void EndProcessing()
/// This cmdlet retrieves information about an encrypted CMS
/// message.
///
- [Cmdlet(VerbsCommon.Get, "CmsMessage", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=394370")]
+ [Cmdlet(VerbsCommon.Get, "CmsMessage", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096598")]
[OutputType(typeof(EnvelopedCms))]
public sealed class GetCmsMessageCommand : PSCmdlet
{
@@ -335,7 +335,7 @@ protected override void EndProcessing()
/// This cmdlet retrieves the clear text content of an encrypted CMS
/// message.
///
- [Cmdlet(VerbsSecurity.Unprotect, "CmsMessage", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=394374", DefaultParameterSetName = "ByWinEvent")]
+ [Cmdlet(VerbsSecurity.Unprotect, "CmsMessage", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2096701", DefaultParameterSetName = "ByWinEvent")]
[OutputType(typeof(string))]
public sealed class UnprotectCmsMessageCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Security/security/CredentialCommands.cs b/src/Microsoft.PowerShell.Security/security/CredentialCommands.cs
index b3fa108afe4..3fbe9bd237c 100644
--- a/src/Microsoft.PowerShell.Security/security/CredentialCommands.cs
+++ b/src/Microsoft.PowerShell.Security/security/CredentialCommands.cs
@@ -13,7 +13,7 @@ namespace Microsoft.PowerShell.Commands
/// a prompted password. That credential object can then be used for other
/// operations involving security.
///
- [Cmdlet(VerbsCommon.Get, "Credential", DefaultParameterSetName = GetCredentialCommand.credentialSet, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113311")]
+ [Cmdlet(VerbsCommon.Get, "Credential", DefaultParameterSetName = GetCredentialCommand.credentialSet, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096824")]
[OutputType(typeof(PSCredential), ParameterSetName = new string[] { GetCredentialCommand.credentialSet, GetCredentialCommand.messageSet })]
public sealed class GetCredentialCommand : PSCmdlet
{
diff --git a/src/Microsoft.PowerShell.Security/security/ExecutionPolicyCommands.cs b/src/Microsoft.PowerShell.Security/security/ExecutionPolicyCommands.cs
index 73029997bfb..80d125b0f5e 100644
--- a/src/Microsoft.PowerShell.Security/security/ExecutionPolicyCommands.cs
+++ b/src/Microsoft.PowerShell.Security/security/ExecutionPolicyCommands.cs
@@ -24,7 +24,7 @@ namespace Microsoft.PowerShell.Commands
/// - Current user machine preference
/// - Local machine preference.
///
- [Cmdlet(VerbsCommon.Get, "ExecutionPolicy", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113315")]
+ [Cmdlet(VerbsCommon.Get, "ExecutionPolicy", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096594")]
[OutputType(typeof(ExecutionPolicy))]
public class GetExecutionPolicyCommand : PSCmdlet
{
@@ -116,7 +116,7 @@ protected override void BeginProcessing()
/// If the Group Policy setting overrides the desired behaviour, the Cmdlet
/// generates a terminating error.
///
- [Cmdlet(VerbsCommon.Set, "ExecutionPolicy", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113394")]
+ [Cmdlet(VerbsCommon.Set, "ExecutionPolicy", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096612")]
public class SetExecutionPolicyCommand : PSCmdlet
{
///
diff --git a/src/Microsoft.PowerShell.Security/security/SecureStringCommands.cs b/src/Microsoft.PowerShell.Security/security/SecureStringCommands.cs
index 9e0352cb359..45f577e0a37 100644
--- a/src/Microsoft.PowerShell.Security/security/SecureStringCommands.cs
+++ b/src/Microsoft.PowerShell.Security/security/SecureStringCommands.cs
@@ -113,7 +113,7 @@ public byte[] Key
/// uses the DPAPI to encrypt the string. When a key is specified, the
/// command uses the AES algorithm to encrypt the string.
///
- [Cmdlet(VerbsData.ConvertFrom, "SecureString", DefaultParameterSetName = "Secure", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113287")]
+ [Cmdlet(VerbsData.ConvertFrom, "SecureString", DefaultParameterSetName = "Secure", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096497")]
[OutputType(typeof(string))]
public sealed class ConvertFromSecureStringCommand : ConvertFromToSecureStringCommandBase
{
@@ -209,7 +209,7 @@ protected override void ProcessRecord()
/// When a key is specified, the command uses the AES algorithm
/// to decrypt the data.
///
- [Cmdlet(VerbsData.ConvertTo, "SecureString", DefaultParameterSetName = "Secure", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113291")]
+ [Cmdlet(VerbsData.ConvertTo, "SecureString", DefaultParameterSetName = "Secure", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096916")]
[OutputType(typeof(SecureString))]
public sealed class ConvertToSecureStringCommand : ConvertFromToSecureStringCommandBase
{
diff --git a/src/Microsoft.PowerShell.Security/security/SignatureCommands.cs b/src/Microsoft.PowerShell.Security/security/SignatureCommands.cs
index 96fd64f4473..789ae2fa014 100644
--- a/src/Microsoft.PowerShell.Security/security/SignatureCommands.cs
+++ b/src/Microsoft.PowerShell.Security/security/SignatureCommands.cs
@@ -263,7 +263,7 @@ protected override void ProcessRecord()
/// Defines the implementation of the 'get-AuthenticodeSignature' cmdlet.
/// This cmdlet extracts the digital signature from the given file.
///
- [Cmdlet(VerbsCommon.Get, "AuthenticodeSignature", DefaultParameterSetName = "ByPath", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113307")]
+ [Cmdlet(VerbsCommon.Get, "AuthenticodeSignature", DefaultParameterSetName = "ByPath", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096823")]
[OutputType(typeof(Signature))]
public sealed class GetAuthenticodeSignatureCommand : SignatureCommandsBase
{
@@ -307,7 +307,7 @@ protected override Signature PerformAction(string sourcePathOrExtension, byte[]
/// This cmdlet sets the digital signature on a given file.
///
[Cmdlet(VerbsCommon.Set, "AuthenticodeSignature", SupportsShouldProcess = true, DefaultParameterSetName = "ByPath",
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113391")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096919")]
[OutputType(typeof(Signature))]
public sealed class SetAuthenticodeSignatureCommand : SignatureCommandsBase
{
diff --git a/src/Microsoft.WSMan.Management/CredSSP.cs b/src/Microsoft.WSMan.Management/CredSSP.cs
index c4dbc0684f9..60cfe742767 100644
--- a/src/Microsoft.WSMan.Management/CredSSP.cs
+++ b/src/Microsoft.WSMan.Management/CredSSP.cs
@@ -98,7 +98,7 @@ internal IWSManSession CreateWSManSession()
/// access a second hop.
///
- [Cmdlet(VerbsLifecycle.Disable, "WSManCredSSP", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=141438")]
+ [Cmdlet(VerbsLifecycle.Disable, "WSManCredSSP", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2096628")]
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Cred")]
[SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly", MessageId = "SSP")]
public class DisableWSManCredSSPCommand : WSManCredSSPCommandBase, IDisposable
@@ -395,7 +395,7 @@ protected override void BeginProcessing()
/// allows delegating explicit credentials to a server when server
/// authentication is achieved via a trusted X509 certificate or Kerberos.
///
- [Cmdlet(VerbsLifecycle.Enable, "WSManCredSSP", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=141442")]
+ [Cmdlet(VerbsLifecycle.Enable, "WSManCredSSP", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2096719")]
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Cred")]
[SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly", MessageId = "SSP")]
public class EnableWSManCredSSPCommand : WSManCredSSPCommandBase, IDisposable/*, IDynamicParameters*/
@@ -747,7 +747,7 @@ private void UpdateGPORegistrySettings(string applicationname, string[] delegate
///
[SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Cred")]
[SuppressMessage("Microsoft.Naming", "CA1709:IdentifiersShouldBeCasedCorrectly", MessageId = "SSP")]
- [Cmdlet(VerbsCommon.Get, "WSManCredSSP", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=141443")]
+ [Cmdlet(VerbsCommon.Get, "WSManCredSSP", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2096838")]
public class GetWSManCredSSPCommand : PSCmdlet, IDisposable
{
#region private
diff --git a/src/Microsoft.WSMan.Management/InvokeWSManAction.cs b/src/Microsoft.WSMan.Management/InvokeWSManAction.cs
index 2ff653a4c8c..88657b30a30 100644
--- a/src/Microsoft.WSMan.Management/InvokeWSManAction.cs
+++ b/src/Microsoft.WSMan.Management/InvokeWSManAction.cs
@@ -24,7 +24,7 @@ namespace Microsoft.WSMan.Management
/// -SelectorSet {Name=Spooler}
///
- [Cmdlet(VerbsLifecycle.Invoke, "WSManAction", DefaultParameterSetName = "URI", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=141446")]
+ [Cmdlet(VerbsLifecycle.Invoke, "WSManAction", DefaultParameterSetName = "URI", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2096843")]
public class InvokeWSManActionCommand : AuthenticatingWSManCommand, IDisposable
{
///
diff --git a/src/Microsoft.WSMan.Management/NewWSManSession.cs b/src/Microsoft.WSMan.Management/NewWSManSession.cs
index edf5a367293..73ea9f68c53 100644
--- a/src/Microsoft.WSMan.Management/NewWSManSession.cs
+++ b/src/Microsoft.WSMan.Management/NewWSManSession.cs
@@ -26,7 +26,7 @@ namespace Microsoft.WSMan.Management
/// Connect-WSMan.
///
- [Cmdlet(VerbsCommon.New, "WSManSessionOption", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=141449")]
+ [Cmdlet(VerbsCommon.New, "WSManSessionOption", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2096845")]
public class NewWSManSessionOptionCommand : PSCmdlet
{
///
diff --git a/src/Microsoft.WSMan.Management/PingWSMan.cs b/src/Microsoft.WSMan.Management/PingWSMan.cs
index 0195305f706..5603f9882e3 100644
--- a/src/Microsoft.WSMan.Management/PingWSMan.cs
+++ b/src/Microsoft.WSMan.Management/PingWSMan.cs
@@ -23,7 +23,7 @@ namespace Microsoft.WSMan.Management
/// service is running.
///
- [Cmdlet(VerbsDiagnostic.Test, "WSMan", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=141464")]
+ [Cmdlet(VerbsDiagnostic.Test, "WSMan", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2097114")]
public class TestWSManCommand : AuthenticatingWSManCommand, IDisposable
{
///
diff --git a/src/Microsoft.WSMan.Management/Set-QuickConfig.cs b/src/Microsoft.WSMan.Management/Set-QuickConfig.cs
index b06805b0a94..484247a2e5a 100644
--- a/src/Microsoft.WSMan.Management/Set-QuickConfig.cs
+++ b/src/Microsoft.WSMan.Management/Set-QuickConfig.cs
@@ -29,7 +29,7 @@ namespace Microsoft.WSMan.Management
/// transport is http
/// 4. Enable firewall exception for WS-Management traffic.
///
- [Cmdlet(VerbsCommon.Set, "WSManQuickConfig", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=141463")]
+ [Cmdlet(VerbsCommon.Set, "WSManQuickConfig", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2097112")]
public class SetWSManQuickConfigCommand : PSCmdlet, IDisposable
{
///
diff --git a/src/Microsoft.WSMan.Management/WSManConnections.cs b/src/Microsoft.WSMan.Management/WSManConnections.cs
index 76f9326936b..3453c5cffa0 100644
--- a/src/Microsoft.WSMan.Management/WSManConnections.cs
+++ b/src/Microsoft.WSMan.Management/WSManConnections.cs
@@ -114,7 +114,7 @@ internal void ValidateSpecifiedAuthentication()
///
/// Connect wsman cmdlet.
///
- [Cmdlet(VerbsCommunications.Connect, "WSMan", DefaultParameterSetName = "ComputerName", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=141437")]
+ [Cmdlet(VerbsCommunications.Connect, "WSMan", DefaultParameterSetName = "ComputerName", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2096841")]
public class ConnectWSManCommand : AuthenticatingWSManCommand
{
#region Parameters
@@ -293,7 +293,7 @@ protected override void BeginProcessing()
/// IP address to indicate the remote host(s)
///
- [Cmdlet(VerbsCommunications.Disconnect, "WSMan", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=141439")]
+ [Cmdlet(VerbsCommunications.Disconnect, "WSMan", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2096839")]
public class DisconnectWSManCommand : PSCmdlet, IDisposable
{
///
diff --git a/src/Microsoft.WSMan.Management/WSManInstance.cs b/src/Microsoft.WSMan.Management/WSManInstance.cs
index 60251db3254..b0873b6d1d9 100644
--- a/src/Microsoft.WSMan.Management/WSManInstance.cs
+++ b/src/Microsoft.WSMan.Management/WSManInstance.cs
@@ -29,7 +29,7 @@ namespace Microsoft.WSMan.Management
/// -SelectorSet {Name=Spooler}
///
- [Cmdlet(VerbsCommon.Get, "WSManInstance", DefaultParameterSetName = "GetInstance", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=141444")]
+ [Cmdlet(VerbsCommon.Get, "WSManInstance", DefaultParameterSetName = "GetInstance", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2096627")]
public class GetWSManInstanceCommand : AuthenticatingWSManCommand, IDisposable
{
#region parameter
@@ -637,7 +637,7 @@ protected override void EndProcessing()
/// Set-WSManInstance -Action StartService -ResourceURI wmicimv2/Win32_Service
/// -SelectorSet {Name=Spooler}
///
- [Cmdlet(VerbsCommon.Set, "WSManInstance", DefaultParameterSetName = "ComputerName", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=141458")]
+ [Cmdlet(VerbsCommon.Set, "WSManInstance", DefaultParameterSetName = "ComputerName", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2096937")]
public class SetWSManInstanceCommand : AuthenticatingWSManCommand, IDisposable
{
#region Parameters
@@ -1009,7 +1009,7 @@ protected override void EndProcessing()
/// Set-WSManInstance -Action StartService -ResourceURI wmicimv2/Win32_Service
/// -SelectorSet {Name=Spooler}
///
- [Cmdlet(VerbsCommon.Remove, "WSManInstance", DefaultParameterSetName = "ComputerName", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=141453")]
+ [Cmdlet(VerbsCommon.Remove, "WSManInstance", DefaultParameterSetName = "ComputerName", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2096721")]
public class RemoveWSManInstanceCommand : AuthenticatingWSManCommand, IDisposable
{
#region Parameters
@@ -1275,7 +1275,7 @@ protected override void ProcessRecord()
/// using specified ValueSet or input File.
///
- [Cmdlet(VerbsCommon.New, "WSManInstance", DefaultParameterSetName = "ComputerName", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=141448")]
+ [Cmdlet(VerbsCommon.New, "WSManInstance", DefaultParameterSetName = "ComputerName", HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2096933")]
public class NewWSManInstanceCommand : AuthenticatingWSManCommand, IDisposable
{
///
diff --git a/src/System.Management.Automation/FormatAndOutput/out-console/OutConsole.cs b/src/System.Management.Automation/FormatAndOutput/out-console/OutConsole.cs
index b9dd6522d3d..53f5c09e86b 100644
--- a/src/System.Management.Automation/FormatAndOutput/out-console/OutConsole.cs
+++ b/src/System.Management.Automation/FormatAndOutput/out-console/OutConsole.cs
@@ -15,7 +15,7 @@ namespace Microsoft.PowerShell.Commands
/// Null sink to absorb pipeline output.
///
[CmdletAttribute("Out", "Null", SupportsShouldProcess = false,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113366", RemotingCapability = RemotingCapability.None)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096792", RemotingCapability = RemotingCapability.None)]
public class OutNullCommand : PSCmdlet
{
///
@@ -40,7 +40,7 @@ protected override void ProcessRecord()
/// powershell host at the end of the pipeline as the
/// default sink (display to console screen)
///
- [Cmdlet(VerbsData.Out, "Default", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113362", RemotingCapability = RemotingCapability.None)]
+ [Cmdlet(VerbsData.Out, "Default", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096486", RemotingCapability = RemotingCapability.None)]
public class OutDefaultCommand : FrontEndCommandBase
{
///
@@ -169,7 +169,7 @@ protected override void InternalDispose()
///
/// Implementation for the out-host command.
///
- [Cmdlet(VerbsData.Out, "Host", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113365", RemotingCapability = RemotingCapability.None)]
+ [Cmdlet(VerbsData.Out, "Host", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096863", RemotingCapability = RemotingCapability.None)]
public class OutHostCommand : FrontEndCommandBase
{
#region Command Line Parameters
diff --git a/src/System.Management.Automation/engine/CommandMetadata.cs b/src/System.Management.Automation/engine/CommandMetadata.cs
index 278aceed4c5..2548d05bc57 100644
--- a/src/System.Management.Automation/engine/CommandMetadata.cs
+++ b/src/System.Management.Automation/engine/CommandMetadata.cs
@@ -1250,7 +1250,7 @@ private static CommandMetadata GetRestrictedSelectObject()
ParameterSetMetadata.ParameterFlags.ValueFromPipeline | ParameterSetMetadata.ParameterFlags.Mandatory,
null)); // no help message
- return GetRestrictedCmdlet("Select-Object", null, "https://go.microsoft.com/fwlink/?LinkID=113387", propertyParameter, inputParameter);
+ return GetRestrictedCmdlet("Select-Object", null, "https://go.microsoft.com/fwlink/?LinkID=2096716", propertyParameter, inputParameter);
}
private static CommandMetadata GetRestrictedMeasureObject()
@@ -1291,7 +1291,7 @@ private static CommandMetadata GetRestrictedExitPSSession()
// remote Exit-PSSession is not called by PowerShell, but is needed so that users
// can exit an interactive remoting session
- return GetRestrictedCmdlet("Exit-PSSession", null, "https://go.microsoft.com/fwlink/?LinkID=135210"); // no parameters are used
+ return GetRestrictedCmdlet("Exit-PSSession", null, "https://go.microsoft.com/fwlink/?LinkID=2096787"); // no parameters are used
}
///
@@ -1444,7 +1444,7 @@ private static Collection GetRestrictedJobCommands()
ParameterMetadata passThruParameter = new ParameterMetadata("PassThru", typeof(SwitchParameter));
ParameterMetadata anyParameter = new ParameterMetadata("Any", typeof(SwitchParameter));
- CommandMetadata stopJob = GetRestrictedCmdlet("Stop-Job", JobCmdletBase.SessionIdParameterSet, "https://go.microsoft.com/fwlink/?LinkID=113413", nameParameter,
+ CommandMetadata stopJob = GetRestrictedCmdlet("Stop-Job", JobCmdletBase.SessionIdParameterSet, "https://go.microsoft.com/fwlink/?LinkID=2096795", nameParameter,
instanceIdParameter, idParameter,
stateParameter, filterParameter, jobParameter, passThruParameter);
restrictedJobCommands.Add(stopJob);
@@ -1453,7 +1453,7 @@ private static Collection GetRestrictedJobCommands()
ParameterMetadata timeoutParameter = new ParameterMetadata("Timeout", typeof(int));
timeoutParameter.Attributes.Add(new ValidateRangeAttribute(-1, Int32.MaxValue));
- CommandMetadata waitJob = GetRestrictedCmdlet("Wait-Job", JobCmdletBase.SessionIdParameterSet, "https://go.microsoft.com/fwlink/?LinkID=113422", nameParameter,
+ CommandMetadata waitJob = GetRestrictedCmdlet("Wait-Job", JobCmdletBase.SessionIdParameterSet, "https://go.microsoft.com/fwlink/?LinkID=2096902", nameParameter,
instanceIdParameter, idParameter,
jobParameter, stateParameter, filterParameter, anyParameter, timeoutParameter);
restrictedJobCommands.Add(waitJob);
@@ -1492,7 +1492,7 @@ private static Collection GetRestrictedJobCommands()
ParameterMetadata writeJobParameter = new ParameterMetadata("WriteJobInResults", typeof(SwitchParameter));
ParameterMetadata autoRemoveParameter = new ParameterMetadata("AutoRemoveJob", typeof(SwitchParameter));
- CommandMetadata receiveJob = GetRestrictedCmdlet("Receive-Job", "Location", "https://go.microsoft.com/fwlink/?LinkID=113372", nameParameter,
+ CommandMetadata receiveJob = GetRestrictedCmdlet("Receive-Job", "Location", "https://go.microsoft.com/fwlink/?LinkID=2096965", nameParameter,
instanceIdParameter,
idParameter, stateParameter, jobParameter2,
computerNameParameter, locationParameter,
@@ -1503,7 +1503,7 @@ private static Collection GetRestrictedJobCommands()
// Remove-Job cmdlet
ParameterMetadata forceParameter = new ParameterMetadata("Force", typeof(SwitchParameter));
- CommandMetadata removeJob = GetRestrictedCmdlet("Remove-Job", JobCmdletBase.SessionIdParameterSet, "https://go.microsoft.com/fwlink/?LinkID=113377",
+ CommandMetadata removeJob = GetRestrictedCmdlet("Remove-Job", JobCmdletBase.SessionIdParameterSet, "https://go.microsoft.com/fwlink/?LinkID=2096868",
nameParameter, instanceIdParameter,
idParameter, stateParameter, filterParameter, jobParameter, forceParameter);
diff --git a/src/System.Management.Automation/engine/ExperimentalFeature/GetExperimentalFeatureCommand.cs b/src/System.Management.Automation/engine/ExperimentalFeature/GetExperimentalFeatureCommand.cs
index 07bcf02838c..96681e6e6b9 100644
--- a/src/System.Management.Automation/engine/ExperimentalFeature/GetExperimentalFeatureCommand.cs
+++ b/src/System.Management.Automation/engine/ExperimentalFeature/GetExperimentalFeatureCommand.cs
@@ -13,7 +13,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Implements Get-ExperimentalFeature cmdlet.
///
- [Cmdlet(VerbsCommon.Get, "ExperimentalFeature", HelpUri = "https://go.microsoft.com/fwlink/?linkid=2007351")]
+ [Cmdlet(VerbsCommon.Get, "ExperimentalFeature", HelpUri = "https://go.microsoft.com/fwlink/?linkid=2096786")]
public class GetExperimentalFeatureCommand : PSCmdlet
{
///
diff --git a/src/System.Management.Automation/engine/GetCommandCommand.cs b/src/System.Management.Automation/engine/GetCommandCommand.cs
index 88048e96216..06bdf643a5b 100644
--- a/src/System.Management.Automation/engine/GetCommandCommand.cs
+++ b/src/System.Management.Automation/engine/GetCommandCommand.cs
@@ -21,7 +21,7 @@ namespace Microsoft.PowerShell.Commands
/// commands of the given name. It returns an instance of CommandInfo for each
/// command that is found.
///
- [Cmdlet(VerbsCommon.Get, "Command", DefaultParameterSetName = "CmdletSet", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113309")]
+ [Cmdlet(VerbsCommon.Get, "Command", DefaultParameterSetName = "CmdletSet", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096579")]
[OutputType(typeof(AliasInfo), typeof(ApplicationInfo), typeof(FunctionInfo),
typeof(CmdletInfo), typeof(ExternalScriptInfo), typeof(FilterInfo),
typeof(string), typeof(PSObject))]
diff --git a/src/System.Management.Automation/engine/InitialSessionState.cs b/src/System.Management.Automation/engine/InitialSessionState.cs
index 101461be407..d0f402cefc7 100644
--- a/src/System.Management.Automation/engine/InitialSessionState.cs
+++ b/src/System.Management.Automation/engine/InitialSessionState.cs
@@ -4167,7 +4167,7 @@ internal static string GetClearHostFunctionText()
@{Top = -1; Bottom = -1; Right = -1; Left = -1},
@{Character = ' '; ForegroundColor = $rawui.ForegroundColor; BackgroundColor = $rawui.BackgroundColor})
# .Link
-# https://go.microsoft.com/fwlink/?LinkID=225747
+# https://go.microsoft.com/fwlink/?LinkID=2096480
# .ExternalHelp System.Management.Automation.dll-help.xml
";
}
@@ -4179,7 +4179,7 @@ internal static string GetClearHostFunctionText()
& (Get-Command -CommandType Application clear | Select-Object -First 1).Definition
))
# .Link
-# https://go.microsoft.com/fwlink/?LinkID=225747
+# https://go.microsoft.com/fwlink/?LinkID=2096480
# .ExternalHelp System.Management.Automation.dll-help.xml
";
}
diff --git a/src/System.Management.Automation/engine/InternalCommands.cs b/src/System.Management.Automation/engine/InternalCommands.cs
index 36113498745..770b7e21318 100644
--- a/src/System.Management.Automation/engine/InternalCommands.cs
+++ b/src/System.Management.Automation/engine/InternalCommands.cs
@@ -58,7 +58,7 @@ public object GetValue(PSObject inputObject, string propertyName)
/// to each element of the pipeline.
///
[Cmdlet("ForEach", "Object", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Low,
- DefaultParameterSetName = ForEachObjectCommand.ScriptBlockSet, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113300",
+ DefaultParameterSetName = ForEachObjectCommand.ScriptBlockSet, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096867",
RemotingCapability = RemotingCapability.None)]
public sealed class ForEachObjectCommand : PSCmdlet, IDisposable
{
@@ -1262,7 +1262,7 @@ internal static ErrorRecord GenerateNameParameterError(string paraName, string r
/// is passed on, otherwise it is dropped.
///
[Cmdlet("Where", "Object", DefaultParameterSetName = "EqualSet",
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113423", RemotingCapability = RemotingCapability.None)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096806", RemotingCapability = RemotingCapability.None)]
public sealed class WhereObjectCommand : PSCmdlet
{
///
@@ -2485,7 +2485,7 @@ private ReadOnlyPSMemberInfoCollection GetMatchMembers()
///
/// Implements a cmdlet that sets the script debugging options.
///
- [Cmdlet(VerbsCommon.Set, "PSDebug", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113398")]
+ [Cmdlet(VerbsCommon.Set, "PSDebug", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096959")]
public sealed class SetPSDebugCommand : PSCmdlet
{
///
@@ -2611,7 +2611,7 @@ protected override void BeginProcessing()
/// Unlike Set-PSDebug -strict, Set-StrictMode is not engine-wide, and only
/// affects the scope it was defined in.
///
- [Cmdlet(VerbsCommon.Set, "StrictMode", DefaultParameterSetName = "Version", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113450")]
+ [Cmdlet(VerbsCommon.Set, "StrictMode", DefaultParameterSetName = "Version", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096804")]
public class SetStrictModeCommand : PSCmdlet
{
///
diff --git a/src/System.Management.Automation/engine/Modules/ExportModuleMemberCommand.cs b/src/System.Management.Automation/engine/Modules/ExportModuleMemberCommand.cs
index 64961b67efd..e937f2c12be 100644
--- a/src/System.Management.Automation/engine/Modules/ExportModuleMemberCommand.cs
+++ b/src/System.Management.Automation/engine/Modules/ExportModuleMemberCommand.cs
@@ -17,7 +17,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Implements a cmdlet that loads a module.
///
- [Cmdlet(VerbsData.Export, "ModuleMember", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=141551")]
+ [Cmdlet(VerbsData.Export, "ModuleMember", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096578")]
public sealed class ExportModuleMemberCommand : PSCmdlet
{
///
diff --git a/src/System.Management.Automation/engine/Modules/GetModuleCommand.cs b/src/System.Management.Automation/engine/Modules/GetModuleCommand.cs
index 56a715b922d..2104142987a 100644
--- a/src/System.Management.Automation/engine/Modules/GetModuleCommand.cs
+++ b/src/System.Management.Automation/engine/Modules/GetModuleCommand.cs
@@ -28,7 +28,7 @@ namespace Microsoft.PowerShell.Commands
/// Implements a cmdlet that gets the list of loaded modules...
///
[Cmdlet(VerbsCommon.Get, "Module", DefaultParameterSetName = ParameterSet_Loaded,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=141552")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096696")]
[OutputType(typeof(PSModuleInfo))]
public sealed class GetModuleCommand : ModuleCmdletBase, IDisposable
{
diff --git a/src/System.Management.Automation/engine/Modules/ImportModuleCommand.cs b/src/System.Management.Automation/engine/Modules/ImportModuleCommand.cs
index 14baf52204c..226dd37a812 100644
--- a/src/System.Management.Automation/engine/Modules/ImportModuleCommand.cs
+++ b/src/System.Management.Automation/engine/Modules/ImportModuleCommand.cs
@@ -37,7 +37,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Implements a cmdlet that loads a module.
///
- [Cmdlet(VerbsData.Import, "Module", DefaultParameterSetName = ParameterSet_Name, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=141553")]
+ [Cmdlet(VerbsData.Import, "Module", DefaultParameterSetName = ParameterSet_Name, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096585")]
[OutputType(typeof(PSModuleInfo))]
public sealed class ImportModuleCommand : ModuleCmdletBase, IDisposable
{
diff --git a/src/System.Management.Automation/engine/Modules/NewModuleCommand.cs b/src/System.Management.Automation/engine/Modules/NewModuleCommand.cs
index 8d2e5d3f3ba..2673c08ea5d 100644
--- a/src/System.Management.Automation/engine/Modules/NewModuleCommand.cs
+++ b/src/System.Management.Automation/engine/Modules/NewModuleCommand.cs
@@ -17,7 +17,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Implements a cmdlet that creates a dynamic module from a scriptblock..
///
- [Cmdlet(VerbsCommon.New, "Module", DefaultParameterSetName = "ScriptBlock", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=141554")]
+ [Cmdlet(VerbsCommon.New, "Module", DefaultParameterSetName = "ScriptBlock", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096698")]
[OutputType(typeof(PSModuleInfo))]
public sealed class NewModuleCommand : ModuleCmdletBase
{
diff --git a/src/System.Management.Automation/engine/Modules/NewModuleManifestCommand.cs b/src/System.Management.Automation/engine/Modules/NewModuleManifestCommand.cs
index 1d08ffe905a..47413af9b70 100644
--- a/src/System.Management.Automation/engine/Modules/NewModuleManifestCommand.cs
+++ b/src/System.Management.Automation/engine/Modules/NewModuleManifestCommand.cs
@@ -25,7 +25,7 @@ namespace Microsoft.PowerShell.Commands
/// Cmdlet to create a new module manifest file.
///
[Cmdlet(VerbsCommon.New, "ModuleManifest", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Low,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=141555")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096487")]
[OutputType(typeof(string))]
public sealed class NewModuleManifestCommand : PSCmdlet
{
diff --git a/src/System.Management.Automation/engine/Modules/RemoveModuleCommand.cs b/src/System.Management.Automation/engine/Modules/RemoveModuleCommand.cs
index d19eac34353..863c01922d0 100644
--- a/src/System.Management.Automation/engine/Modules/RemoveModuleCommand.cs
+++ b/src/System.Management.Automation/engine/Modules/RemoveModuleCommand.cs
@@ -22,7 +22,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Implements a cmdlet that gets the list of loaded modules...
///
- [Cmdlet(VerbsCommon.Remove, "Module", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=141556")]
+ [Cmdlet(VerbsCommon.Remove, "Module", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096802")]
public sealed class RemoveModuleCommand : ModuleCmdletBase
{
///
diff --git a/src/System.Management.Automation/engine/Modules/TestModuleManifestCommand.cs b/src/System.Management.Automation/engine/Modules/TestModuleManifestCommand.cs
index 2242f0e2809..ca0350daa1d 100644
--- a/src/System.Management.Automation/engine/Modules/TestModuleManifestCommand.cs
+++ b/src/System.Management.Automation/engine/Modules/TestModuleManifestCommand.cs
@@ -20,7 +20,7 @@ namespace Microsoft.PowerShell.Commands
///
/// This cmdlet takes a module manifest and validates the contents...
///
- [Cmdlet(VerbsDiagnostic.Test, "ModuleManifest", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=141557")]
+ [Cmdlet(VerbsDiagnostic.Test, "ModuleManifest", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096900")]
[OutputType(typeof(PSModuleInfo))]
public sealed class TestModuleManifestCommand : ModuleCmdletBase
{
diff --git a/src/System.Management.Automation/engine/hostifaces/History.cs b/src/System.Management.Automation/engine/hostifaces/History.cs
index dca2c8771ae..12f32f0e4af 100644
--- a/src/System.Management.Automation/engine/hostifaces/History.cs
+++ b/src/System.Management.Automation/engine/hostifaces/History.cs
@@ -824,7 +824,7 @@ internal long GetNextHistoryId()
///
/// This class Implements the get-history command.
///
- [Cmdlet(VerbsCommon.Get, "History", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113317")]
+ [Cmdlet(VerbsCommon.Get, "History", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096788")]
[OutputType(typeof(HistoryInfo))]
public class GetHistoryCommand : PSCmdlet
{
@@ -970,7 +970,7 @@ protected override void ProcessRecord()
///
/// This class implements the Invoke-History command.
///
- [Cmdlet(VerbsLifecycle.Invoke, "History", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113344")]
+ [Cmdlet(VerbsLifecycle.Invoke, "History", SupportsShouldProcess = true, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096586")]
public class InvokeHistoryCommand : PSCmdlet
{
#region Parameters
@@ -1332,7 +1332,7 @@ private void ReplaceHistoryString(HistoryInfo entry)
///
/// This class Implements the add-history command.
///
- [Cmdlet(VerbsCommon.Add, "History", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113279")]
+ [Cmdlet(VerbsCommon.Add, "History", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096479")]
[OutputType(typeof(HistoryInfo))]
public class AddHistoryCommand : PSCmdlet
{
@@ -1588,7 +1588,7 @@ private static
/// This Class implements the Clear History cmdlet
///
- [Cmdlet(VerbsCommon.Clear, "History", SupportsShouldProcess = true, DefaultParameterSetName = "IDParameter", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135199")]
+ [Cmdlet(VerbsCommon.Clear, "History", SupportsShouldProcess = true, DefaultParameterSetName = "IDParameter", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096691")]
public class ClearHistoryCommand : PSCmdlet
{
#region Command Line Parameters
diff --git a/src/System.Management.Automation/engine/remoting/commands/ConnectPSSession.cs b/src/System.Management.Automation/engine/remoting/commands/ConnectPSSession.cs
index 18781be1457..77e1c8d0b8e 100644
--- a/src/System.Management.Automation/engine/remoting/commands/ConnectPSSession.cs
+++ b/src/System.Management.Automation/engine/remoting/commands/ConnectPSSession.cs
@@ -46,7 +46,7 @@ namespace Microsoft.PowerShell.Commands
///
[SuppressMessage("Microsoft.PowerShell", "PS1012:CallShouldProcessOnlyIfDeclaringSupport")]
[Cmdlet(VerbsCommunications.Connect, "PSSession", SupportsShouldProcess = true, DefaultParameterSetName = ConnectPSSessionCommand.NameParameterSet,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=210604", RemotingCapability = RemotingCapability.OwnedByCommand)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096694", RemotingCapability = RemotingCapability.OwnedByCommand)]
[OutputType(typeof(PSSession))]
public class ConnectPSSessionCommand : PSRunspaceCmdlet, IDisposable
{
diff --git a/src/System.Management.Automation/engine/remoting/commands/CustomShellCommands.cs b/src/System.Management.Automation/engine/remoting/commands/CustomShellCommands.cs
index 286337b9421..43c4d0dd8d1 100644
--- a/src/System.Management.Automation/engine/remoting/commands/CustomShellCommands.cs
+++ b/src/System.Management.Automation/engine/remoting/commands/CustomShellCommands.cs
@@ -30,7 +30,7 @@ namespace Microsoft.PowerShell.Commands
[Cmdlet(VerbsLifecycle.Register, RemotingConstants.PSSessionConfigurationNoun,
DefaultParameterSetName = PSSessionConfigurationCommandBase.NameParameterSetName,
SupportsShouldProcess = true,
- ConfirmImpact = ConfirmImpact.Medium, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=144306")]
+ ConfirmImpact = ConfirmImpact.Medium, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096793")]
public sealed class RegisterPSSessionConfigurationCommand : PSSessionConfigurationCommandBase
{
#region Private Data
@@ -2440,7 +2440,7 @@ internal PSSessionConfigurationCommandBase()
/// Class implementing Unregister-PSSessionConfiguration.
///
[Cmdlet(VerbsLifecycle.Unregister, RemotingConstants.PSSessionConfigurationNoun,
- SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Low, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=144308")]
+ SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Low, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096803")]
public sealed class UnregisterPSSessionConfigurationCommand : PSCmdlet
{
#region Private Data
@@ -2674,7 +2674,7 @@ protected override void EndProcessing()
///
/// Class implementing Get-PSSessionConfiguration.
///
- [Cmdlet(VerbsCommon.Get, RemotingConstants.PSSessionConfigurationNoun, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=144304")]
+ [Cmdlet(VerbsCommon.Get, RemotingConstants.PSSessionConfigurationNoun, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096790")]
[OutputType("Microsoft.PowerShell.Commands.PSSessionConfigurationCommands#PSSessionConfiguration")]
public sealed class GetPSSessionConfigurationCommand : PSCmdlet
{
@@ -2905,7 +2905,7 @@ protected override void ProcessRecord()
[Cmdlet(VerbsCommon.Set, RemotingConstants.PSSessionConfigurationNoun,
DefaultParameterSetName = PSSessionConfigurationCommandBase.NameParameterSetName,
SupportsShouldProcess = true,
- ConfirmImpact = ConfirmImpact.Medium, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=144307")]
+ ConfirmImpact = ConfirmImpact.Medium, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096901")]
public sealed class SetPSSessionConfigurationCommand : PSSessionConfigurationCommandBase
{
#region Private Data
@@ -3997,7 +3997,7 @@ private PSObject ConstructPropertiesForUpdate()
/// Class implementing Enable-PSSessionConfiguration cmdlet.
///
[Cmdlet(VerbsLifecycle.Enable, RemotingConstants.PSSessionConfigurationNoun,
- SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=144301")]
+ SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096785")]
public sealed class EnablePSSessionConfigurationCommand : PSCmdlet
{
#region Private Data
@@ -4432,7 +4432,7 @@ protected override void EndProcessing()
///
///
[Cmdlet(VerbsLifecycle.Disable, RemotingConstants.PSSessionConfigurationNoun,
- SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Low, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=144299")]
+ SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Low, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096692")]
public sealed class DisablePSSessionConfigurationCommand : PSCmdlet
{
#region Private Data
@@ -4663,7 +4663,7 @@ protected override void EndProcessing()
///
///
[Cmdlet(VerbsLifecycle.Enable, RemotingConstants.PSRemotingNoun,
- SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=144300")]
+ SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096577")]
public sealed class EnablePSRemotingCommand : PSCmdlet
{
#region Private Data
@@ -5031,7 +5031,7 @@ protected override void EndProcessing()
/// local access is still enabled.
///
[Cmdlet(VerbsLifecycle.Disable, RemotingConstants.PSRemotingNoun,
- SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=144298")]
+ SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096482")]
public sealed class DisablePSRemotingCommand : PSCmdlet
{
#region Private Data
diff --git a/src/System.Management.Automation/engine/remoting/commands/DisconnectPSSession.cs b/src/System.Management.Automation/engine/remoting/commands/DisconnectPSSession.cs
index 1d8fc87fbc8..e664ee55ce0 100644
--- a/src/System.Management.Automation/engine/remoting/commands/DisconnectPSSession.cs
+++ b/src/System.Management.Automation/engine/remoting/commands/DisconnectPSSession.cs
@@ -39,7 +39,7 @@ namespace Microsoft.PowerShell.Commands
///
[SuppressMessage("Microsoft.PowerShell", "PS1012:CallShouldProcessOnlyIfDeclaringSupport")]
[Cmdlet(VerbsCommunications.Disconnect, "PSSession", SupportsShouldProcess = true, DefaultParameterSetName = DisconnectPSSessionCommand.SessionParameterSet,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=210605", RemotingCapability = RemotingCapability.OwnedByCommand)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096576", RemotingCapability = RemotingCapability.OwnedByCommand)]
[OutputType(typeof(PSSession))]
public class DisconnectPSSessionCommand : PSRunspaceCmdlet, IDisposable
{
diff --git a/src/System.Management.Automation/engine/remoting/commands/EnterPSHostProcessCommand.cs b/src/System.Management.Automation/engine/remoting/commands/EnterPSHostProcessCommand.cs
index 129d7e6e2c0..727c5ef709e 100644
--- a/src/System.Management.Automation/engine/remoting/commands/EnterPSHostProcessCommand.cs
+++ b/src/System.Management.Automation/engine/remoting/commands/EnterPSHostProcessCommand.cs
@@ -26,7 +26,7 @@ namespace Microsoft.PowerShell.Commands
/// then an error message will result.
///
[Cmdlet(VerbsCommon.Enter, "PSHostProcess", DefaultParameterSetName = EnterPSHostProcessCommand.ProcessIdParameterSet,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkId=403736")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2096580")]
public sealed class EnterPSHostProcessCommand : PSCmdlet
{
#region Members
@@ -445,7 +445,7 @@ private void VerifyPipeName(string customPipeName)
/// This cmdlet exits an interactive session with a local process.
///
[Cmdlet(VerbsCommon.Exit, "PSHostProcess",
- HelpUri = "https://go.microsoft.com/fwlink/?LinkId=403737")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkId=2096583")]
public sealed class ExitPSHostProcessCommand : PSCmdlet
{
#region Overrides
diff --git a/src/System.Management.Automation/engine/remoting/commands/GetJob.cs b/src/System.Management.Automation/engine/remoting/commands/GetJob.cs
index aa53fbb8d75..2b41e3f39cf 100644
--- a/src/System.Management.Automation/engine/remoting/commands/GetJob.cs
+++ b/src/System.Management.Automation/engine/remoting/commands/GetJob.cs
@@ -11,7 +11,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Cmdlet to get available list of results.
///
- [Cmdlet(VerbsCommon.Get, "Job", DefaultParameterSetName = JobCmdletBase.SessionIdParameterSet, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113328")]
+ [Cmdlet(VerbsCommon.Get, "Job", DefaultParameterSetName = JobCmdletBase.SessionIdParameterSet, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096582")]
[OutputType(typeof(Job))]
public class GetJobCommand : JobCmdletBase
{
diff --git a/src/System.Management.Automation/engine/remoting/commands/InvokeCommandCommand.cs b/src/System.Management.Automation/engine/remoting/commands/InvokeCommandCommand.cs
index cc29accd61e..3aa5f518c3c 100644
--- a/src/System.Management.Automation/engine/remoting/commands/InvokeCommandCommand.cs
+++ b/src/System.Management.Automation/engine/remoting/commands/InvokeCommandCommand.cs
@@ -124,7 +124,7 @@ namespace Microsoft.PowerShell.Commands
/// "Microsoft.PowerShell" is used.
///
[Cmdlet(VerbsLifecycle.Invoke, "Command", DefaultParameterSetName = InvokeCommandCommand.InProcParameterSet,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135225", RemotingCapability = RemotingCapability.OwnedByCommand)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096789", RemotingCapability = RemotingCapability.OwnedByCommand)]
public class InvokeCommandCommand : PSExecutionCmdlet, IDisposable
{
#region Parameters
diff --git a/src/System.Management.Automation/engine/remoting/commands/NewPSSessionConfigurationFile.cs b/src/System.Management.Automation/engine/remoting/commands/NewPSSessionConfigurationFile.cs
index 42326fa027f..4303a766d3c 100644
--- a/src/System.Management.Automation/engine/remoting/commands/NewPSSessionConfigurationFile.cs
+++ b/src/System.Management.Automation/engine/remoting/commands/NewPSSessionConfigurationFile.cs
@@ -21,7 +21,7 @@ namespace Microsoft.PowerShell.Commands
///
/// See Declarative Initial Session State (DISC)
///
- [Cmdlet(VerbsCommon.New, "PSSessionConfigurationFile", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=217036")]
+ [Cmdlet(VerbsCommon.New, "PSSessionConfigurationFile", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096791")]
public class NewPSSessionConfigurationFileCommand : PSCmdlet
{
#region Parameters
diff --git a/src/System.Management.Automation/engine/remoting/commands/NewPSSessionOptionCommand.cs b/src/System.Management.Automation/engine/remoting/commands/NewPSSessionOptionCommand.cs
index d2e354845d2..f6a7f215829 100644
--- a/src/System.Management.Automation/engine/remoting/commands/NewPSSessionOptionCommand.cs
+++ b/src/System.Management.Automation/engine/remoting/commands/NewPSSessionOptionCommand.cs
@@ -14,7 +14,7 @@ namespace Microsoft.PowerShell.Commands
/// This class implements New-PSSessionOption cmdlet.
/// Spec: TBD.
///
- [Cmdlet(VerbsCommon.New, "PSSessionOption", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=144305", RemotingCapability = RemotingCapability.None)]
+ [Cmdlet(VerbsCommon.New, "PSSessionOption", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096488", RemotingCapability = RemotingCapability.None)]
[OutputType(typeof(PSSessionOption))]
public sealed class NewPSSessionOptionCommand : PSCmdlet
{
diff --git a/src/System.Management.Automation/engine/remoting/commands/PopRunspaceCommand.cs b/src/System.Management.Automation/engine/remoting/commands/PopRunspaceCommand.cs
index e3cff8bc17f..d6da9d63f81 100644
--- a/src/System.Management.Automation/engine/remoting/commands/PopRunspaceCommand.cs
+++ b/src/System.Management.Automation/engine/remoting/commands/PopRunspaceCommand.cs
@@ -13,7 +13,7 @@ namespace Microsoft.PowerShell.Commands
///
/// Exit-PSSession cmdlet.
///
- [Cmdlet(VerbsCommon.Exit, "PSSession", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135212")]
+ [Cmdlet(VerbsCommon.Exit, "PSSession", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096787")]
public class ExitPSSessionCommand : PSRemotingCmdlet
{
///
diff --git a/src/System.Management.Automation/engine/remoting/commands/PushRunspaceCommand.cs b/src/System.Management.Automation/engine/remoting/commands/PushRunspaceCommand.cs
index 364d3c222bb..eb5b85659fa 100644
--- a/src/System.Management.Automation/engine/remoting/commands/PushRunspaceCommand.cs
+++ b/src/System.Management.Automation/engine/remoting/commands/PushRunspaceCommand.cs
@@ -23,7 +23,7 @@ namespace Microsoft.PowerShell.Commands
/// Enter-PSSession cmdlet.
///
[Cmdlet(VerbsCommon.Enter, "PSSession", DefaultParameterSetName = "ComputerName",
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135210", RemotingCapability = RemotingCapability.OwnedByCommand)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096695", RemotingCapability = RemotingCapability.OwnedByCommand)]
public class EnterPSSessionCommand : PSRemotingBaseCmdlet
{
#region Strings
diff --git a/src/System.Management.Automation/engine/remoting/commands/ReceiveJob.cs b/src/System.Management.Automation/engine/remoting/commands/ReceiveJob.cs
index f71c368e700..f375b356df4 100644
--- a/src/System.Management.Automation/engine/remoting/commands/ReceiveJob.cs
+++ b/src/System.Management.Automation/engine/remoting/commands/ReceiveJob.cs
@@ -54,7 +54,7 @@ namespace Microsoft.PowerShell.Commands
/// not PSRemotingJob.
///
[Cmdlet(VerbsCommunications.Receive, "Job", DefaultParameterSetName = ReceiveJobCommand.LocationParameterSet,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113372", RemotingCapability = RemotingCapability.SupportedByCommand)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096965", RemotingCapability = RemotingCapability.SupportedByCommand)]
public class ReceiveJobCommand : JobCmdletBase, IDisposable
{
#region Properties
diff --git a/src/System.Management.Automation/engine/remoting/commands/ReceivePSSession.cs b/src/System.Management.Automation/engine/remoting/commands/ReceivePSSession.cs
index 41311963249..039427c7170 100644
--- a/src/System.Management.Automation/engine/remoting/commands/ReceivePSSession.cs
+++ b/src/System.Management.Automation/engine/remoting/commands/ReceivePSSession.cs
@@ -64,7 +64,7 @@ namespace Microsoft.PowerShell.Commands
///
[SuppressMessage("Microsoft.PowerShell", "PS1012:CallShouldProcessOnlyIfDeclaringSupport")]
[Cmdlet(VerbsCommunications.Receive, "PSSession", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Low,
- DefaultParameterSetName = ReceivePSSessionCommand.SessionParameterSet, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=217037",
+ DefaultParameterSetName = ReceivePSSessionCommand.SessionParameterSet, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096800",
RemotingCapability = RemotingCapability.OwnedByCommand)]
public class ReceivePSSessionCommand : PSRemotingCmdlet
{
diff --git a/src/System.Management.Automation/engine/remoting/commands/RemoveJob.cs b/src/System.Management.Automation/engine/remoting/commands/RemoveJob.cs
index 6236a59209e..4771a86c1af 100644
--- a/src/System.Management.Automation/engine/remoting/commands/RemoveJob.cs
+++ b/src/System.Management.Automation/engine/remoting/commands/RemoveJob.cs
@@ -768,7 +768,7 @@ protected override void BeginProcessing()
/// through get-psjob command.
///
[Cmdlet(VerbsCommon.Remove, "Job", SupportsShouldProcess = true, DefaultParameterSetName = JobCmdletBase.SessionIdParameterSet,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113377")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096868")]
[OutputType(typeof(Job), ParameterSetName = new string[] { JobCmdletBase.JobParameterSet })]
public class RemoveJobCommand : JobCmdletBase, IDisposable
{
diff --git a/src/System.Management.Automation/engine/remoting/commands/StartJob.cs b/src/System.Management.Automation/engine/remoting/commands/StartJob.cs
index c63e28fb183..8e1ba2ce8c7 100644
--- a/src/System.Management.Automation/engine/remoting/commands/StartJob.cs
+++ b/src/System.Management.Automation/engine/remoting/commands/StartJob.cs
@@ -17,7 +17,7 @@ namespace Microsoft.PowerShell.Commands
///
/// This cmdlet start invocation of jobs in background.
///
- [Cmdlet(VerbsLifecycle.Start, "Job", DefaultParameterSetName = StartJobCommand.ComputerNameParameterSet, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113405")]
+ [Cmdlet(VerbsLifecycle.Start, "Job", DefaultParameterSetName = StartJobCommand.ComputerNameParameterSet, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096796")]
[OutputType(typeof(PSRemotingJob))]
public class StartJobCommand : PSExecutionCmdlet, IDisposable
{
diff --git a/src/System.Management.Automation/engine/remoting/commands/StopJob.cs b/src/System.Management.Automation/engine/remoting/commands/StopJob.cs
index af8380e6134..54df5b8b748 100644
--- a/src/System.Management.Automation/engine/remoting/commands/StopJob.cs
+++ b/src/System.Management.Automation/engine/remoting/commands/StopJob.cs
@@ -16,7 +16,7 @@ namespace Microsoft.PowerShell.Commands
/// This cmdlet stops the asynchronously invoked remote operations.
///
[Cmdlet(VerbsLifecycle.Stop, "Job", SupportsShouldProcess = true, DefaultParameterSetName = JobCmdletBase.SessionIdParameterSet,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113413")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096795")]
[OutputType(typeof(Job))]
public class StopJobCommand : JobCmdletBase, IDisposable
{
diff --git a/src/System.Management.Automation/engine/remoting/commands/TestPSSessionConfigurationFile.cs b/src/System.Management.Automation/engine/remoting/commands/TestPSSessionConfigurationFile.cs
index 6ca3d55e809..3add796b3c8 100644
--- a/src/System.Management.Automation/engine/remoting/commands/TestPSSessionConfigurationFile.cs
+++ b/src/System.Management.Automation/engine/remoting/commands/TestPSSessionConfigurationFile.cs
@@ -16,7 +16,7 @@ namespace Microsoft.PowerShell.Commands
///
/// See Declarative Initial Session Config (DISC)
///
- [Cmdlet(VerbsDiagnostic.Test, "PSSessionConfigurationFile", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=217039")]
+ [Cmdlet(VerbsDiagnostic.Test, "PSSessionConfigurationFile", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096797")]
[OutputType(typeof(bool))]
public class TestPSSessionConfigurationFileCommand : PSCmdlet
{
diff --git a/src/System.Management.Automation/engine/remoting/commands/WaitJob.cs b/src/System.Management.Automation/engine/remoting/commands/WaitJob.cs
index 4d51c2daeb6..45df8a25706 100644
--- a/src/System.Management.Automation/engine/remoting/commands/WaitJob.cs
+++ b/src/System.Management.Automation/engine/remoting/commands/WaitJob.cs
@@ -15,7 +15,7 @@ namespace Microsoft.PowerShell.Commands
///
/// This cmdlet waits for job to complete.
///
- [Cmdlet(VerbsLifecycle.Wait, "Job", DefaultParameterSetName = JobCmdletBase.SessionIdParameterSet, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113422")]
+ [Cmdlet(VerbsLifecycle.Wait, "Job", DefaultParameterSetName = JobCmdletBase.SessionIdParameterSet, HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096902")]
[OutputType(typeof(Job))]
public class WaitJobCommand : JobCmdletBase, IDisposable
{
diff --git a/src/System.Management.Automation/engine/remoting/commands/getrunspacecommand.cs b/src/System.Management.Automation/engine/remoting/commands/getrunspacecommand.cs
index 89016bb1aed..af1005faa6f 100644
--- a/src/System.Management.Automation/engine/remoting/commands/getrunspacecommand.cs
+++ b/src/System.Management.Automation/engine/remoting/commands/getrunspacecommand.cs
@@ -42,7 +42,7 @@ namespace Microsoft.PowerShell.Commands
/// get-psession -ContainerId containerId -InstanceId instanceId.
///
[Cmdlet(VerbsCommon.Get, "PSSession", DefaultParameterSetName = PSRunspaceCmdlet.NameParameterSet,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135219", RemotingCapability = RemotingCapability.OwnedByCommand)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096697", RemotingCapability = RemotingCapability.OwnedByCommand)]
[OutputType(typeof(PSSession))]
public class GetPSSessionCommand : PSRunspaceCmdlet, IDisposable
{
diff --git a/src/System.Management.Automation/engine/remoting/commands/newrunspacecommand.cs b/src/System.Management.Automation/engine/remoting/commands/newrunspacecommand.cs
index 40fd3126ff8..b6d6bd6328c 100644
--- a/src/System.Management.Automation/engine/remoting/commands/newrunspacecommand.cs
+++ b/src/System.Management.Automation/engine/remoting/commands/newrunspacecommand.cs
@@ -52,7 +52,7 @@ namespace Microsoft.PowerShell.Commands
/// $rs = New-PSSession -computername s1 -port 8061 -ShellName E12.
///
[Cmdlet(VerbsCommon.New, "PSSession", DefaultParameterSetName = "ComputerName",
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135237", RemotingCapability = RemotingCapability.OwnedByCommand)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096484", RemotingCapability = RemotingCapability.OwnedByCommand)]
[OutputType(typeof(PSSession))]
public class NewPSSessionCommand : PSRemotingBaseCmdlet, IDisposable
{
diff --git a/src/System.Management.Automation/engine/remoting/commands/removerunspacecommand.cs b/src/System.Management.Automation/engine/remoting/commands/removerunspacecommand.cs
index f09dbcdbf8e..f81570bd5d8 100644
--- a/src/System.Management.Automation/engine/remoting/commands/removerunspacecommand.cs
+++ b/src/System.Management.Automation/engine/remoting/commands/removerunspacecommand.cs
@@ -31,7 +31,7 @@ namespace Microsoft.PowerShell.Commands
///
[Cmdlet(VerbsCommon.Remove, "PSSession", SupportsShouldProcess = true,
DefaultParameterSetName = RemovePSSessionCommand.IdParameterSet,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=135250", RemotingCapability = RemotingCapability.OwnedByCommand)]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096963", RemotingCapability = RemotingCapability.OwnedByCommand)]
public class RemovePSSessionCommand : PSRunspaceCmdlet
{
#region Parameters
diff --git a/src/System.Management.Automation/help/HelpCommands.cs b/src/System.Management.Automation/help/HelpCommands.cs
index b5a966a3406..9b7ad5edd96 100644
--- a/src/System.Management.Automation/help/HelpCommands.cs
+++ b/src/System.Management.Automation/help/HelpCommands.cs
@@ -23,7 +23,7 @@ namespace Microsoft.PowerShell.Commands
///
/// This class implements get-help command.
///
- [Cmdlet(VerbsCommon.Get, "Help", DefaultParameterSetName = "AllUsersView", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=113316")]
+ [Cmdlet(VerbsCommon.Get, "Help", DefaultParameterSetName = "AllUsersView", HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096483")]
public sealed class GetHelpCommand : PSCmdlet
{
///
diff --git a/src/System.Management.Automation/help/SaveHelpCommand.cs b/src/System.Management.Automation/help/SaveHelpCommand.cs
index 048f93ecda0..b87ff03a3dc 100644
--- a/src/System.Management.Automation/help/SaveHelpCommand.cs
+++ b/src/System.Management.Automation/help/SaveHelpCommand.cs
@@ -18,7 +18,7 @@ namespace Microsoft.PowerShell.Commands
/// This class implements the Save-Help cmdlet.
///
[Cmdlet(VerbsData.Save, "Help", DefaultParameterSetName = SaveHelpCommand.PathParameterSetName,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=210612")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096794")]
public sealed class SaveHelpCommand : UpdatableHelpCommandBase
{
#region Constructor
diff --git a/src/System.Management.Automation/help/UpdateHelpCommand.cs b/src/System.Management.Automation/help/UpdateHelpCommand.cs
index c58877cfaf2..88efa16f0da 100644
--- a/src/System.Management.Automation/help/UpdateHelpCommand.cs
+++ b/src/System.Management.Automation/help/UpdateHelpCommand.cs
@@ -18,7 +18,7 @@ namespace Microsoft.PowerShell.Commands
///
[Cmdlet(VerbsData.Update, "Help", DefaultParameterSetName = PathParameterSetName,
SupportsShouldProcess = true,
- HelpUri = "https://go.microsoft.com/fwlink/?LinkID=210614")]
+ HelpUri = "https://go.microsoft.com/fwlink/?LinkID=2096805")]
public sealed class UpdateHelpCommand : UpdatableHelpCommandBase
{
#region Constructor
diff --git a/test/powershell/engine/Help/assets/HelpURI/V2Cmdlets.csv b/test/powershell/engine/Help/assets/HelpURI/V2Cmdlets.csv
index f9beccad6f2..a88e715c347 100644
--- a/test/powershell/engine/Help/assets/HelpURI/V2Cmdlets.csv
+++ b/test/powershell/engine/Help/assets/HelpURI/V2Cmdlets.csv
@@ -1,247 +1,247 @@
TopicTitle,HelpURI
Add-Computer,https://go.microsoft.com/fwlink/?LinkID=135194
-Add-Content,https://go.microsoft.com/fwlink/?LinkID=113278
-Add-History,https://go.microsoft.com/fwlink/?LinkID=113279
-Add-Member,https://go.microsoft.com/fwlink/?LinkID=113280
+Add-Content,https://go.microsoft.com/fwlink/?linkid=2096489
+Add-History,https://go.microsoft.com/fwlink/?linkid=2096479
+Add-Member,https://go.microsoft.com/fwlink/?linkid=2097109
Add-PsSnapin,https://go.microsoft.com/fwlink/?LinkID=113281
-Add-Type,https://go.microsoft.com/fwlink/?LinkID=135195
+Add-Type,https://go.microsoft.com/fwlink/?linkid=2096601
Checkpoint-Computer,https://go.microsoft.com/fwlink/?LinkID=135197
-Clear-Content,https://go.microsoft.com/fwlink/?LinkID=113282
+Clear-Content,https://go.microsoft.com/fwlink/?linkid=2096807
Clear-EventLog,https://go.microsoft.com/fwlink/?LinkID=135198
-Clear-History,https://go.microsoft.com/fwlink/?LinkID=135199
-Clear-Item,https://go.microsoft.com/fwlink/?LinkID=113283
-Clear-ItemProperty,https://go.microsoft.com/fwlink/?LinkID=113284
-Clear-Variable,https://go.microsoft.com/fwlink/?LinkID=113285
-Compare-Object,https://go.microsoft.com/fwlink/?LinkID=113286
+Clear-History,https://go.microsoft.com/fwlink/?linkid=2096691
+Clear-Host,https://go.microsoft.com/fwlink/?linkid=2096480
+Clear-Item,https://go.microsoft.com/fwlink/?linkid=2096491
+Clear-ItemProperty,https://go.microsoft.com/fwlink/?linkid=2096903
+Clear-Variable,https://go.microsoft.com/fwlink/?linkid=2096923
+Compare-Object,https://go.microsoft.com/fwlink/?linkid=2096605
Complete-Transaction,https://go.microsoft.com/fwlink/?LinkID=135200
-Connect-WSMan,https://go.microsoft.com/fwlink/?LinkID=141437
-ConvertFrom-Csv,https://go.microsoft.com/fwlink/?LinkID=135201
-ConvertFrom-SecureString,https://go.microsoft.com/fwlink/?LinkID=113287
-ConvertFrom-StringData,https://go.microsoft.com/fwlink/?LinkID=113288
-Convert-Path,https://go.microsoft.com/fwlink/?LinkID=113289
-ConvertTo-Csv,https://go.microsoft.com/fwlink/?LinkID=135203
-ConvertTo-Html,https://go.microsoft.com/fwlink/?LinkID=113290
-ConvertTo-SecureString,https://go.microsoft.com/fwlink/?LinkID=113291
-ConvertTo-XML,https://go.microsoft.com/fwlink/?LinkID=135204
-Copy-Item,https://go.microsoft.com/fwlink/?LinkID=113292
-Copy-ItemProperty,https://go.microsoft.com/fwlink/?LinkID=113293
-Debug-Process,https://go.microsoft.com/fwlink/?LinkID=135206
+Connect-WSMan,https://go.microsoft.com/fwlink/?linkid=2096841
+ConvertFrom-Csv,https://go.microsoft.com/fwlink/?linkid=2096830
+ConvertFrom-SecureString,https://go.microsoft.com/fwlink/?linkid=2096497
+ConvertFrom-StringData,https://go.microsoft.com/fwlink/?linkid=2096602
+Convert-Path,https://go.microsoft.com/fwlink/?linkid=2096588
+ConvertTo-Csv,https://go.microsoft.com/fwlink/?linkid=2096832
+ConvertTo-Html,https://go.microsoft.com/fwlink/?linkid=2096595
+ConvertTo-SecureString,https://go.microsoft.com/fwlink/?linkid=2096916
+ConvertTo-XML,https://go.microsoft.com/fwlink/?linkid=2096603
+Copy-Item,https://go.microsoft.com/fwlink/?linkid=2096990
+Copy-ItemProperty,https://go.microsoft.com/fwlink/?linkid=2096589
+Debug-Process,https://go.microsoft.com/fwlink/?linkid=2096809
Disable-ComputerRestore,https://go.microsoft.com/fwlink/?LinkID=135207
-Disable-PSBreakpoint,https://go.microsoft.com/fwlink/?LinkID=113294
-Disable-PSRemoting,https://go.microsoft.com/fwlink/?LinkID=144298
-Disable-PSSessionConfiguration,https://go.microsoft.com/fwlink/?LinkID=144299
-Disable-WSManCredSSP,https://go.microsoft.com/fwlink/?LinkID=141438
-Disconnect-WSMan,https://go.microsoft.com/fwlink/?LinkID=141439
+Disable-PSBreakpoint,https://go.microsoft.com/fwlink/?linkid=2096498
+Disable-PSRemoting,https://go.microsoft.com/fwlink/?linkid=2096482
+Disable-PSSessionConfiguration,https://go.microsoft.com/fwlink/?linkid=2096692
+Disable-WSManCredSSP,https://go.microsoft.com/fwlink/?linkid=2096628
+Disconnect-WSMan,https://go.microsoft.com/fwlink/?linkid=2096839
Enable-ComputerRestore,https://go.microsoft.com/fwlink/?LinkID=135209
-Enable-PSBreakpoint,https://go.microsoft.com/fwlink/?LinkID=113295
-Enable-PSRemoting,https://go.microsoft.com/fwlink/?LinkID=144300
-Enable-PSSessionConfiguration,https://go.microsoft.com/fwlink/?LinkID=144301
-Enable-WSManCredSSP,https://go.microsoft.com/fwlink/?LinkID=141442
-Enter-PsSession,https://go.microsoft.com/fwlink/?LinkID=135210
-Exit-PsSession,https://go.microsoft.com/fwlink/?LinkID=135212
-Export-Alias,https://go.microsoft.com/fwlink/?LinkID=113296
-Export-Clixml,https://go.microsoft.com/fwlink/?LinkID=113297
+Enable-PSBreakpoint,https://go.microsoft.com/fwlink/?linkid=2096700
+Enable-PSRemoting,https://go.microsoft.com/fwlink/?linkid=2096577
+Enable-PSSessionConfiguration,https://go.microsoft.com/fwlink/?linkid=2096785
+Enable-WSManCredSSP,https://go.microsoft.com/fwlink/?linkid=2096719
+Enter-PsSession,https://go.microsoft.com/fwlink/?linkid=2096695
+Exit-PsSession,https://go.microsoft.com/fwlink/?linkid=2096787
+Export-Alias,https://go.microsoft.com/fwlink/?linkid=2096597
+Export-Clixml,https://go.microsoft.com/fwlink/?linkid=2096926
Export-Console,https://go.microsoft.com/fwlink/?LinkID=113298
-Export-Csv,https://go.microsoft.com/fwlink/?LinkID=113299
-Export-FormatData,https://go.microsoft.com/fwlink/?LinkID=144302
-Export-ModuleMember,https://go.microsoft.com/fwlink/?LinkID=141551
-Export-PsSession,https://go.microsoft.com/fwlink/?LinkID=135213
-ForEach-Object,https://go.microsoft.com/fwlink/?LinkID=113300
-Format-Custom,https://go.microsoft.com/fwlink/?LinkID=113301
-Format-List,https://go.microsoft.com/fwlink/?LinkID=113302
-Format-Table,https://go.microsoft.com/fwlink/?LinkID=113303
-Format-Wide,https://go.microsoft.com/fwlink/?LinkID=113304
-Get-Acl,https://go.microsoft.com/fwlink/?LinkID=113305
-Get-Alias,https://go.microsoft.com/fwlink/?LinkID=113306
-Get-AuthenticodeSignature,https://go.microsoft.com/fwlink/?LinkID=113307
-Get-ChildItem,https://go.microsoft.com/fwlink/?LinkID=113308
-Get-Command,https://go.microsoft.com/fwlink/?LinkID=113309
+Export-Csv,https://go.microsoft.com/fwlink/?linkid=2096608
+Export-FormatData,https://go.microsoft.com/fwlink/?linkid=2096834
+Export-ModuleMember,https://go.microsoft.com/fwlink/?linkid=2096578
+Export-PsSession,https://go.microsoft.com/fwlink/?linkid=2096604
+ForEach-Object,https://go.microsoft.com/fwlink/?linkid=2096867
+Format-Custom,https://go.microsoft.com/fwlink/?linkid=2096929
+Format-List,https://go.microsoft.com/fwlink/?linkid=2096928
+Format-Table,https://go.microsoft.com/fwlink/?linkid=2096703
+Format-Wide,https://go.microsoft.com/fwlink/?linkid=2096930
+Get-Acl,https://go.microsoft.com/fwlink/?linkid=2096593
+Get-Alias,https://go.microsoft.com/fwlink/?linkid=2096702
+Get-AuthenticodeSignature,https://go.microsoft.com/fwlink/?linkid=2096823
+Get-ChildItem,https://go.microsoft.com/fwlink/?linkid=2096492
+Get-Command,https://go.microsoft.com/fwlink/?linkid=2096579
Get-ComputerRestorePoint,https://go.microsoft.com/fwlink/?LinkID=135215
-Get-Content,https://go.microsoft.com/fwlink/?LinkID=113310
+Get-Content,https://go.microsoft.com/fwlink/?linkid=2096490
Get-Counter,https://go.microsoft.com/fwlink/?LinkID=2109647
-Get-Credential,https://go.microsoft.com/fwlink/?LinkID=113311
-Get-Culture,https://go.microsoft.com/fwlink/?LinkID=113312
-Get-Date,https://go.microsoft.com/fwlink/?LinkID=113313
-Get-Event,https://go.microsoft.com/fwlink/?LinkID=113453
+Get-Credential,https://go.microsoft.com/fwlink/?linkid=2096824
+Get-Culture,https://go.microsoft.com/fwlink/?linkid=2097017
+Get-Date,https://go.microsoft.com/fwlink/?linkid=2096615
+Get-Event,https://go.microsoft.com/fwlink/?linkid=2097014
Get-EventLog,https://go.microsoft.com/fwlink/?LinkID=113314
-Get-EventSubscriber,https://go.microsoft.com/fwlink/?LinkID=135155
-Get-ExecutionPolicy,https://go.microsoft.com/fwlink/?LinkID=113315
-Get-FormatData,https://go.microsoft.com/fwlink/?LinkID=144303
-Get-Help,https://go.microsoft.com/fwlink/?LinkID=113316
-Get-History,https://go.microsoft.com/fwlink/?LinkID=113317
-Get-Host,https://go.microsoft.com/fwlink/?LinkID=113318
+Get-EventSubscriber,https://go.microsoft.com/fwlink/?linkid=2096607
+Get-ExecutionPolicy,https://go.microsoft.com/fwlink/?linkid=2096594
+Get-FormatData,https://go.microsoft.com/fwlink/?linkid=2096614
+Get-Help,https://go.microsoft.com/fwlink/?linkid=2096483
+Get-History,https://go.microsoft.com/fwlink/?linkid=2096788
+Get-Host,https://go.microsoft.com/fwlink/?linkid=2097110
Get-Hotfix,https://go.microsoft.com/fwlink/?linkid=2109716
-Get-Item,https://go.microsoft.com/fwlink/?LinkID=113319
-Get-ItemProperty,https://go.microsoft.com/fwlink/?LinkID=113320
-Get-Job,https://go.microsoft.com/fwlink/?LinkID=113328
-Get-Location,https://go.microsoft.com/fwlink/?LinkID=113321
-Get-Member,https://go.microsoft.com/fwlink/?LinkID=113322
-Get-Module,https://go.microsoft.com/fwlink/?LinkID=141552
-Get-PfxCertificate,https://go.microsoft.com/fwlink/?LinkID=113323
-Get-Process,https://go.microsoft.com/fwlink/?LinkID=113324
-Get-PSBreakpoint,https://go.microsoft.com/fwlink/?LinkID=113325
-Get-PSCallStack,https://go.microsoft.com/fwlink/?LinkID=113326
-Get-PSDrive,https://go.microsoft.com/fwlink/?LinkID=113327
-Get-PSProvider,https://go.microsoft.com/fwlink/?LinkID=113329
-Get-PsSession,https://go.microsoft.com/fwlink/?LinkID=135219
-Get-PSSessionConfiguration,https://go.microsoft.com/fwlink/?LinkID=144304
+Get-Item,https://go.microsoft.com/fwlink/?linkid=2096812
+Get-ItemProperty,https://go.microsoft.com/fwlink/?linkid=2096493
+Get-Job,https://go.microsoft.com/fwlink/?linkid=2096582
+Get-Location,https://go.microsoft.com/fwlink/?linkid=2096495
+Get-Member,https://go.microsoft.com/fwlink/?linkid=2096704
+Get-Module,https://go.microsoft.com/fwlink/?linkid=2096696
+Get-PfxCertificate,https://go.microsoft.com/fwlink/?linkid=2096918
+Get-Process,https://go.microsoft.com/fwlink/?linkid=2096814
+Get-PSBreakpoint,https://go.microsoft.com/fwlink/?linkid=2097108
+Get-PSCallStack,https://go.microsoft.com/fwlink/?linkid=2096705
+Get-PSDrive,https://go.microsoft.com/fwlink/?linkid=2096494
+Get-PSProvider,https://go.microsoft.com/fwlink/?linkid=2096816
+Get-PsSession,https://go.microsoft.com/fwlink/?linkid=2096697
+Get-PSSessionConfiguration,https://go.microsoft.com/fwlink/?linkid=2096790
Get-PSSnapin,https://go.microsoft.com/fwlink/?LinkID=113330
-Get-Random,https://go.microsoft.com/fwlink/?LinkID=113446
-Get-Service,https://go.microsoft.com/fwlink/?LinkID=113332
-Get-TraceSource,https://go.microsoft.com/fwlink/?LinkID=113333
+Get-Random,https://go.microsoft.com/fwlink/?linkid=2097016
+Get-Service,https://go.microsoft.com/fwlink/?linkid=2096496
+Get-TraceSource,https://go.microsoft.com/fwlink/?linkid=2096707
Get-Transaction,https://go.microsoft.com/fwlink/?LinkID=135220
-Get-UICulture,https://go.microsoft.com/fwlink/?LinkID=113334
-Get-Unique,https://go.microsoft.com/fwlink/?LinkID=113335
-Get-Variable,https://go.microsoft.com/fwlink/?LinkID=113336
-Get-Verb,https://go.microsoft.com/fwlink/?LinkID=160712
-Get-WinEvent,https://go.microsoft.com/fwlink/?LinkID=138336
+Get-UICulture,https://go.microsoft.com/fwlink/?linkid=2096613
+Get-Unique,https://go.microsoft.com/fwlink/?linkid=2097028
+Get-Variable,https://go.microsoft.com/fwlink/?linkid=2096711
+Get-Verb,https://go.microsoft.com/fwlink/?linkid=2097026
+Get-WinEvent,https://go.microsoft.com/fwlink/?linkid=2096581
Get-WmiObject,https://go.microsoft.com/fwlink/?LinkID=113337
-Get-WSManCredSSP,https://go.microsoft.com/fwlink/?LinkID=141443
-Get-WSManInstance,https://go.microsoft.com/fwlink/?LinkID=141444
-Group-Object,https://go.microsoft.com/fwlink/?LinkID=113338
-Import-Alias,https://go.microsoft.com/fwlink/?LinkID=113339
-Import-Clixml,https://go.microsoft.com/fwlink/?LinkID=113340
-Import-Csv,https://go.microsoft.com/fwlink/?LinkID=113341
-Import-LocalizedData,https://go.microsoft.com/fwlink/?LinkID=113342
-Import-Module,https://go.microsoft.com/fwlink/?LinkID=141553
-Import-PsSession,https://go.microsoft.com/fwlink/?LinkID=135221
-Invoke-Command,https://go.microsoft.com/fwlink/?LinkID=135225
-Invoke-Expression,https://go.microsoft.com/fwlink/?LinkID=113343
-Invoke-History,https://go.microsoft.com/fwlink/?LinkID=113344
-Invoke-Item,https://go.microsoft.com/fwlink/?LinkID=113345
+Get-WSManCredSSP,https://go.microsoft.com/fwlink/?linkid=2096838
+Get-WSManInstance,https://go.microsoft.com/fwlink/?linkid=2096627
+Group-Object,https://go.microsoft.com/fwlink/?linkid=2096619
+Import-Alias,https://go.microsoft.com/fwlink/?linkid=2097125
+Import-Clixml,https://go.microsoft.com/fwlink/?linkid=2096618
+Import-Csv,https://go.microsoft.com/fwlink/?linkid=2097020
+Import-LocalizedData,https://go.microsoft.com/fwlink/?linkid=2096710
+Import-Module,https://go.microsoft.com/fwlink/?linkid=2096585
+Import-PsSession,https://go.microsoft.com/fwlink/?linkid=2096712
+Invoke-Command,https://go.microsoft.com/fwlink/?linkid=2096789
+Invoke-Expression,https://go.microsoft.com/fwlink/?linkid=2097030
+Invoke-History,https://go.microsoft.com/fwlink/?linkid=2096586
+Invoke-Item,https://go.microsoft.com/fwlink/?linkid=2096590
Invoke-WmiMethod,https://go.microsoft.com/fwlink/?LinkID=113346
-Invoke-WSManAction,https://go.microsoft.com/fwlink/?LinkID=141446
-Join-Path,https://go.microsoft.com/fwlink/?LinkID=113347
+Invoke-WSManAction,https://go.microsoft.com/fwlink/?linkid=2096843
+Join-Path,https://go.microsoft.com/fwlink/?linkid=2096811
Limit-EventLog,https://go.microsoft.com/fwlink/?LinkID=135227
Managing Errors,https://go.microsoft.com/fwlink/?LinkID=135228
-Measure-Command,https://go.microsoft.com/fwlink/?LinkID=113348
-Measure-Object,https://go.microsoft.com/fwlink/?LinkID=113349
-Move-Item,https://go.microsoft.com/fwlink/?LinkID=113350
-Move-ItemProperty,https://go.microsoft.com/fwlink/?LinkID=113351
-New-Alias,https://go.microsoft.com/fwlink/?LinkID=113352
-New-Event,https://go.microsoft.com/fwlink/?LinkID=135234
+Measure-Command,https://go.microsoft.com/fwlink/?linkid=2097029
+Measure-Object,https://go.microsoft.com/fwlink/?linkid=2096617
+Move-Item,https://go.microsoft.com/fwlink/?linkid=2096591
+Move-ItemProperty,https://go.microsoft.com/fwlink/?linkid=2096817
+New-Alias,https://go.microsoft.com/fwlink/?linkid=2097022
+New-Event,https://go.microsoft.com/fwlink/?linkid=2096708
New-EventLog,https://go.microsoft.com/fwlink/?LinkID=135235
-New-Item,https://go.microsoft.com/fwlink/?LinkID=113353
+New-Item,https://go.microsoft.com/fwlink/?linkid=2096592
New-Item for ClientCertificate,https://go.microsoft.com/fwlink/?LinkID=158676
New-Item for InitializationParam,https://go.microsoft.com/fwlink/?LinkID=158677
New-Item for Listener,https://go.microsoft.com/fwlink/?LinkID=158678
New-Item for Plugin,https://go.microsoft.com/fwlink/?LinkID=158679
New-Item for Resources,https://go.microsoft.com/fwlink/?LinkID=158680
New-Item for Security,https://go.microsoft.com/fwlink/?LinkID=158681
-New-ItemProperty,https://go.microsoft.com/fwlink/?LinkID=113354
-New-Module,https://go.microsoft.com/fwlink/?LinkID=141554
-New-ModuleManifest,https://go.microsoft.com/fwlink/?LinkID=141555
-New-Object,https://go.microsoft.com/fwlink/?LinkID=113355
-New-PSDrive,https://go.microsoft.com/fwlink/?LinkID=113357
-New-PsSession,https://go.microsoft.com/fwlink/?LinkID=135237
-New-PSSessionOption,https://go.microsoft.com/fwlink/?LinkID=144305
-New-Service,https://go.microsoft.com/fwlink/?LinkID=113359
-New-TimeSpan,https://go.microsoft.com/fwlink/?LinkID=113360
-New-Variable,https://go.microsoft.com/fwlink/?LinkID=113361
+New-ItemProperty,https://go.microsoft.com/fwlink/?linkid=2096813
+New-Module,https://go.microsoft.com/fwlink/?linkid=2096698
+New-ModuleManifest,https://go.microsoft.com/fwlink/?linkid=2096487
+New-Object,https://go.microsoft.com/fwlink/?linkid=2096620
+New-PSDrive,https://go.microsoft.com/fwlink/?linkid=2096815
+New-PsSession,https://go.microsoft.com/fwlink/?linkid=2096484
+New-PSSessionOption,https://go.microsoft.com/fwlink/?linkid=2096488
+New-Service,https://go.microsoft.com/fwlink/?linkid=2096905
+New-TimeSpan,https://go.microsoft.com/fwlink/?linkid=2096709
+New-Variable,https://go.microsoft.com/fwlink/?linkid=2097121
New-Webserviceproxy,https://go.microsoft.com/fwlink/?LinkID=135238
-New-WSManInstance,https://go.microsoft.com/fwlink/?LinkID=141448
-New-WSManSessionOption,https://go.microsoft.com/fwlink/?LinkID=141449
+New-WSManInstance,https://go.microsoft.com/fwlink/?linkid=2096933
+New-WSManSessionOption,https://go.microsoft.com/fwlink/?linkid=2096845
Object Pipeline,https://go.microsoft.com/fwlink/?LinkID=135239
-Out-Default,https://go.microsoft.com/fwlink/?LinkID=113362
-Out-File,https://go.microsoft.com/fwlink/?LinkID=113363
+Out-Default,https://go.microsoft.com/fwlink/?linkid=2096486
+Out-File,https://go.microsoft.com/fwlink/?linkid=2096621
Out-GridView,https://go.microsoft.com/fwlink/?LinkID=2109378
-Out-Host,https://go.microsoft.com/fwlink/?LinkID=113365
-Out-Null,https://go.microsoft.com/fwlink/?LinkID=113366
+Out-Host,https://go.microsoft.com/fwlink/?linkid=2096863
+Out-Null,https://go.microsoft.com/fwlink/?linkid=2096792
Out-Printer,https://go.microsoft.com/fwlink/?LinkID=2109553
-Out-String,https://go.microsoft.com/fwlink/?LinkID=113368
-Pop-Location,https://go.microsoft.com/fwlink/?LinkID=113369
-Push-Location,https://go.microsoft.com/fwlink/?LinkID=113370
-Read-Host,https://go.microsoft.com/fwlink/?LinkID=113371
-Receive-Job,https://go.microsoft.com/fwlink/?LinkID=113372
-Register-EngineEvent,https://go.microsoft.com/fwlink/?LinkID=135243
-Register-ObjectEvent,https://go.microsoft.com/fwlink/?LinkID=135244
-Register-PSSessionConfiguration,https://go.microsoft.com/fwlink/?LinkID=144306
+Out-String,https://go.microsoft.com/fwlink/?linkid=2097024
+Pop-Location,https://go.microsoft.com/fwlink/?linkid=2096907
+Prompt,https://go.microsoft.com/fwlink/?LinkID=225750
+Push-Location,https://go.microsoft.com/fwlink/?linkid=2097105
+Read-Host,https://go.microsoft.com/fwlink/?linkid=2096610
+Receive-Job,https://go.microsoft.com/fwlink/?linkid=2096965
+Register-EngineEvent,https://go.microsoft.com/fwlink/?linkid=2097128
+Register-ObjectEvent,https://go.microsoft.com/fwlink/?linkid=2096714
+Register-PSSessionConfiguration,https://go.microsoft.com/fwlink/?linkid=2096793
Register-WmiEvent,https://go.microsoft.com/fwlink/?LinkID=135245
Remove-Computer,https://go.microsoft.com/fwlink/?LinkID=135246
-Remove-Event,https://go.microsoft.com/fwlink/?LinkID=135247
+Remove-Event,https://go.microsoft.com/fwlink/?linkid=2096715
Remove-EventLog,https://go.microsoft.com/fwlink/?LinkID=135248
-Remove-Item,https://go.microsoft.com/fwlink/?LinkID=113373
-Remove-ItemProperty,https://go.microsoft.com/fwlink/?LinkID=113374
-Remove-Job,https://go.microsoft.com/fwlink/?LinkID=113377
-Remove-Module,https://go.microsoft.com/fwlink/?LinkID=141556
-Remove-PSBreakpoint,https://go.microsoft.com/fwlink/?LinkID=113375
-Remove-PSDrive,https://go.microsoft.com/fwlink/?LinkID=113376
-Remove-PsSession,https://go.microsoft.com/fwlink/?LinkID=135250
+Remove-Item,https://go.microsoft.com/fwlink/?linkid=2097103
+Remove-ItemProperty,https://go.microsoft.com/fwlink/?linkid=2097013
+Remove-Job,https://go.microsoft.com/fwlink/?linkid=2096868
+Remove-Module,https://go.microsoft.com/fwlink/?linkid=2096802
+Remove-PSBreakpoint,https://go.microsoft.com/fwlink/?linkid=2097134
+Remove-PSDrive,https://go.microsoft.com/fwlink/?linkid=2097050
+Remove-PsSession,https://go.microsoft.com/fwlink/?linkid=2096963
Remove-PSSnapin,https://go.microsoft.com/fwlink/?LinkID=113378
-Remove-Variable,https://go.microsoft.com/fwlink/?LinkID=113380
+Remove-Variable,https://go.microsoft.com/fwlink/?linkid=2097123
Remove-WmiObject,https://go.microsoft.com/fwlink/?LinkID=113381
-Remove-WSManInstance,https://go.microsoft.com/fwlink/?LinkID=141453
-Rename-Item,https://go.microsoft.com/fwlink/?LinkID=113382
-Rename-ItemProperty,https://go.microsoft.com/fwlink/?LinkID=113383
+Remove-WSManInstance,https://go.microsoft.com/fwlink/?linkid=2096721
+Rename-Item,https://go.microsoft.com/fwlink/?linkid=2097153
+Rename-ItemProperty,https://go.microsoft.com/fwlink/?linkid=2097152
Reset-ComputerMachinePassword,https://go.microsoft.com/fwlink/?LinkID=135252
-Resolve-Path,https://go.microsoft.com/fwlink/?LinkID=113384
-Restart-Computer,https://go.microsoft.com/fwlink/?LinkID=135253
-Restart-Service,https://go.microsoft.com/fwlink/?LinkID=113385
+Resolve-Path,https://go.microsoft.com/fwlink/?linkid=2097143
+Restart-Computer,https://go.microsoft.com/fwlink/?linkid=2097060
+Restart-Service,https://go.microsoft.com/fwlink/?linkid=2097059
Restore-Computer,https://go.microsoft.com/fwlink/?LinkID=135254
-Resume-Service,https://go.microsoft.com/fwlink/?LinkID=113386
-Select-Object,https://go.microsoft.com/fwlink/?LinkID=113387
-Select-String,https://go.microsoft.com/fwlink/?LinkID=113388
-Select-Xml,https://go.microsoft.com/fwlink/?LinkID=135255
-Send-MailMessage,https://go.microsoft.com/fwlink/?LinkID=135256
-Set-Acl,https://go.microsoft.com/fwlink/?LinkID=113389
-Set-Alias,https://go.microsoft.com/fwlink/?LinkID=113390
-Set-AuthenticodeSignature,https://go.microsoft.com/fwlink/?LinkID=113391
-Set-Content,https://go.microsoft.com/fwlink/?LinkID=113392
-Set-Date,https://go.microsoft.com/fwlink/?LinkID=113393
-Set-ExecutionPolicy,https://go.microsoft.com/fwlink/?LinkID=113394
-Set-Item,https://go.microsoft.com/fwlink/?LinkID=113395
-Set-ItemProperty,https://go.microsoft.com/fwlink/?LinkID=113396
-Set-Location,https://go.microsoft.com/fwlink/?LinkID=113397
-Set-PSBreakpoint,https://go.microsoft.com/fwlink/?LinkID=113449
-Set-PSDebug,https://go.microsoft.com/fwlink/?LinkID=113398
-Set-PSSessionConfiguration,https://go.microsoft.com/fwlink/?LinkID=144307
-Set-Service,https://go.microsoft.com/fwlink/?LinkID=113399
-Set-StrictMode,https://go.microsoft.com/fwlink/?LinkID=113450
-Set-TraceSource,https://go.microsoft.com/fwlink/?LinkID=113400
-Set-Variable,https://go.microsoft.com/fwlink/?LinkID=113401
+Resume-Service,https://go.microsoft.com/fwlink/?linkid=2097150
+Select-Object,https://go.microsoft.com/fwlink/?linkid=2096716
+Select-String,https://go.microsoft.com/fwlink/?linkid=2097119
+Select-Xml,https://go.microsoft.com/fwlink/?linkid=2097031
+Send-MailMessage,https://go.microsoft.com/fwlink/?linkid=2097115
+Set-Acl,https://go.microsoft.com/fwlink/?linkid=2096600
+Set-Alias,https://go.microsoft.com/fwlink/?linkid=2096625
+Set-AuthenticodeSignature,https://go.microsoft.com/fwlink/?linkid=2096919
+Set-Content,https://go.microsoft.com/fwlink/?linkid=2097142
+Set-Date,https://go.microsoft.com/fwlink/?linkid=2097133
+Set-ExecutionPolicy,https://go.microsoft.com/fwlink/?linkid=2096612
+Set-Item,https://go.microsoft.com/fwlink/?linkid=2097055
+Set-ItemProperty,https://go.microsoft.com/fwlink/?linkid=2097147
+Set-Location,https://go.microsoft.com/fwlink/?linkid=2097049
+Set-PSBreakpoint,https://go.microsoft.com/fwlink/?linkid=2096623
+Set-PSDebug,https://go.microsoft.com/fwlink/?linkid=2096959
+Set-PSSessionConfiguration,https://go.microsoft.com/fwlink/?linkid=2096901
+Set-Service,https://go.microsoft.com/fwlink/?linkid=2097148
+Set-StrictMode,https://go.microsoft.com/fwlink/?linkid=2096804
+Set-TraceSource,https://go.microsoft.com/fwlink/?linkid=2097129
+Set-Variable,https://go.microsoft.com/fwlink/?linkid=2096624
Set-WmiInstance,https://go.microsoft.com/fwlink/?LinkID=113402
-Set-WSManInstance,https://go.microsoft.com/fwlink/?LinkID=141458
-Set-WSManQuickConfig,https://go.microsoft.com/fwlink/?LinkID=141463
+Set-WSManInstance,https://go.microsoft.com/fwlink/?linkid=2096937
+Set-WSManQuickConfig,https://go.microsoft.com/fwlink/?linkid=2097112
Show-Eventlog,https://go.microsoft.com/fwlink/?LinkID=135257
-Sort-Object,https://go.microsoft.com/fwlink/?LinkID=113403
-Split-Path,https://go.microsoft.com/fwlink/?LinkID=113404
-Start-Job,https://go.microsoft.com/fwlink/?LinkID=113405
-Start-Process,https://go.microsoft.com/fwlink/?LinkID=135261
-Start-Service,https://go.microsoft.com/fwlink/?LinkID=113406
-Start-Sleep,https://go.microsoft.com/fwlink/?LinkID=113407
+Sort-Object,https://go.microsoft.com/fwlink/?linkid=2097038
+Split-Path,https://go.microsoft.com/fwlink/?linkid=2097149
+Start-Job,https://go.microsoft.com/fwlink/?linkid=2096796
+Start-Process,https://go.microsoft.com/fwlink/?linkid=2097141
+Start-Service,https://go.microsoft.com/fwlink/?linkid=2097051
+Start-Sleep,https://go.microsoft.com/fwlink/?linkid=2097041
Start-Transaction,https://go.microsoft.com/fwlink/?LinkID=135262
-Start-Transcript,https://go.microsoft.com/fwlink/?LinkID=113408
-Stop-Computer,https://go.microsoft.com/fwlink/?LinkID=135263
-Stop-Job,https://go.microsoft.com/fwlink/?LinkID=113413
-Stop-Process,https://go.microsoft.com/fwlink/?LinkID=113412
-Stop-Service,https://go.microsoft.com/fwlink/?LinkID=113414
-Stop-Transcript,https://go.microsoft.com/fwlink/?LinkID=113415
-Suspend-Service,https://go.microsoft.com/fwlink/?LinkID=113416
-Tee-Object,https://go.microsoft.com/fwlink/?LinkID=113417
+Start-Transcript,https://go.microsoft.com/fwlink/?linkid=2096485
+Stop-Computer,https://go.microsoft.com/fwlink/?linkid=2097151
+Stop-Job,https://go.microsoft.com/fwlink/?linkid=2096795
+Stop-Process,https://go.microsoft.com/fwlink/?linkid=2097058
+Stop-Service,https://go.microsoft.com/fwlink/?linkid=2097052
+Stop-Transcript,https://go.microsoft.com/fwlink/?linkid=2096798
+Suspend-Service,https://go.microsoft.com/fwlink/?linkid=2097053
+Tee-Object,https://go.microsoft.com/fwlink/?linkid=2097034
Test-ComputerSecureChannel,https://go.microsoft.com/fwlink/?LinkID=137749
-Test-Connection,https://go.microsoft.com/fwlink/?LinkID=135266
-Test-ModuleManifest,https://go.microsoft.com/fwlink/?LinkID=141557
-Test-Path,https://go.microsoft.com/fwlink/?LinkID=113418
-Test-WSMan,https://go.microsoft.com/fwlink/?LinkID=141464
-Trace-Command,https://go.microsoft.com/fwlink/?LinkID=113419
+Test-Connection,https://go.microsoft.com/fwlink/?linkid=2097144
+Test-ModuleManifest,https://go.microsoft.com/fwlink/?linkid=2096900
+Test-Path,https://go.microsoft.com/fwlink/?linkid=2097057
+Test-WSMan,https://go.microsoft.com/fwlink/?linkid=2097114
+Trace-Command,https://go.microsoft.com/fwlink/?linkid=2097136
Undo-Transaction,https://go.microsoft.com/fwlink/?LinkID=135268
-Unregister-Event,https://go.microsoft.com/fwlink/?LinkID=135269
-Unregister-PSSessionConfiguration,https://go.microsoft.com/fwlink/?LinkID=144308
-Update-FormatData,https://go.microsoft.com/fwlink/?LinkID=113420
+Unregister-Event,https://go.microsoft.com/fwlink/?linkid=2097037
+Unregister-PSSessionConfiguration,https://go.microsoft.com/fwlink/?linkid=2096803
+Update-FormatData,https://go.microsoft.com/fwlink/?linkid=2097135
Update-List,https://go.microsoft.com/fwlink/?LinkID=2109383
-Update-TypeData,https://go.microsoft.com/fwlink/?LinkID=113421
+Update-TypeData,https://go.microsoft.com/fwlink/?linkid=2097131
Use-Transaction,https://go.microsoft.com/fwlink/?LinkID=135271
-Wait-Event,https://go.microsoft.com/fwlink/?LinkID=135276
-Wait-Job,https://go.microsoft.com/fwlink/?LinkID=113422
-Wait-Process,https://go.microsoft.com/fwlink/?LinkID=135277
-Where-Object,https://go.microsoft.com/fwlink/?LinkID=113423
-Write-Debug,https://go.microsoft.com/fwlink/?LinkID=113424
-Write-Error,https://go.microsoft.com/fwlink/?LinkID=113425
+Wait-Event,https://go.microsoft.com/fwlink/?linkid=2097042
+Wait-Job,https://go.microsoft.com/fwlink/?linkid=2096902
+Wait-Process,https://go.microsoft.com/fwlink/?linkid=2097146
+Where-Object,https://go.microsoft.com/fwlink/?linkid=2096806
+Write-Debug,https://go.microsoft.com/fwlink/?linkid=2097132
+Write-Error,https://go.microsoft.com/fwlink/?linkid=2097039
Write-EventLog,https://go.microsoft.com/fwlink/?LinkID=135281
-Write-Host,https://go.microsoft.com/fwlink/?LinkID=113426
-Write-Output,https://go.microsoft.com/fwlink/?LinkID=113427
-Write-Progress,https://go.microsoft.com/fwlink/?LinkID=113428
-Write-Verbose,https://go.microsoft.com/fwlink/?LinkID=113429
-Write-Warning,https://go.microsoft.com/fwlink/?LinkID=113430
-Clear-Host,https://go.microsoft.com/fwlink/?LinkID=225747
-Prompt,https://go.microsoft.com/fwlink/?LinkID=225750
+Write-Host,https://go.microsoft.com/fwlink/?linkid=2097137
+Write-Output,https://go.microsoft.com/fwlink/?linkid=2097117
+Write-Progress,https://go.microsoft.com/fwlink/?linkid=2097036
+Write-Verbose,https://go.microsoft.com/fwlink/?linkid=2097043
+Write-Warning,https://go.microsoft.com/fwlink/?linkid=2097044
diff --git a/test/powershell/engine/Help/assets/HelpURI/V3Cmdlets.csv b/test/powershell/engine/Help/assets/HelpURI/V3Cmdlets.csv
index 107b919a20d..5b28697c323 100644
--- a/test/powershell/engine/Help/assets/HelpURI/V3Cmdlets.csv
+++ b/test/powershell/engine/Help/assets/HelpURI/V3Cmdlets.csv
@@ -1,98 +1,96 @@
TopicTitle,HelpURI
Add-ContentFileSystem,https://go.microsoft.com/fwlink/?LinkID=204573
Add-JobTrigger,https://go.microsoft.com/fwlink/?LinkID=223913
-Connect-PSSession,https://go.microsoft.com/fwlink/?LinkID=210604
-ConvertFrom-Json,https://go.microsoft.com/fwlink/?LinkID=217031
-ConvertTo-Json,https://go.microsoft.com/fwlink/?LinkID=217032
+Add-LocalGroupMember,https://go.microsoft.com/fwlink/?LinkId=717987
+Clear-RecycleBin,https://go.microsoft.com/fwlink/?LinkId=2109377
+Connect-PSSession,https://go.microsoft.com/fwlink/?linkid=2096694
+ConvertFrom-Json,https://go.microsoft.com/fwlink/?linkid=2096606
+ConvertFrom-Markdown,https://go.microsoft.com/fwlink/?linkid=2006503
+ConvertFrom-String,https://go.microsoft.com/fwlink/?LinkId=507579
+Convert-String,https://go.microsoft.com/fwlink/?LinkId=528577
+ConvertTo-Json,https://go.microsoft.com/fwlink/?linkid=2096925
+Debug-Runspace,https://go.microsoft.com/fwlink/?linkid=2096917
Disable-JobTrigger,https://go.microsoft.com/fwlink/?LinkID=223918
+Disable-LocalUser,https://go.microsoft.com/fwlink/?LinkId=717986
+Disable-RunspaceDebug,https://go.microsoft.com/fwlink/?linkid=2096924
Disable-ScheduledJob,https://go.microsoft.com/fwlink/?LinkID=223927
-Disconnect-PSSession,https://go.microsoft.com/fwlink/?LinkID=210605
+Disconnect-PSSession,https://go.microsoft.com/fwlink/?linkid=2096576
Enable-JobTrigger,https://go.microsoft.com/fwlink/?LinkID=223917
+Enable-LocalUser,https://go.microsoft.com/fwlink/?LinkId=717985
+Enable-RunspaceDebug,https://go.microsoft.com/fwlink/?linkid=2096831
Enable-ScheduledJob,https://go.microsoft.com/fwlink/?LinkID=223926
+Enter-PSHostProcess,https://go.microsoft.com/fwlink/?linkid=2096580
+Exit-PSHostProcess,https://go.microsoft.com/fwlink/?linkid=2096583
+Format-Hex,https://go.microsoft.com/fwlink/?linkid=2096611
Get-ChildItemFileSystem,https://go.microsoft.com/fwlink/?LinkID=204557
+Get-Clipboard,https://go.microsoft.com/fwlink/?LinkId=2109905
+Get-CmsMessage,https://go.microsoft.com/fwlink/?linkid=2096598
+Get-ComputerInfo,https://go.microsoft.com/fwlink/?linkid=2096810
Get-ContentFileSystem,https://go.microsoft.com/fwlink/?LinkID=204574
Get-ControlPanelItem,https://go.microsoft.com/fwlink/?LinkID=219982
-Get-CmsMessage,https://go.microsoft.com/fwlink/?LinkID=394370
+Get-ExperimentalFeature,https://go.microsoft.com/fwlink/?linkid=2096786
+Get-ItemPropertyValue,https://go.microsoft.com/fwlink/?linkid=2096906
Get-JobTrigger,https://go.microsoft.com/fwlink/?LinkID=223915
+Get-LocalGroup,https://go.microsoft.com/fwlink/?LinkId=717974
+Get-LocalGroupMember,https://go.microsoft.com/fwlink/?LinkId=717988
+Get-LocalUser,https://go.microsoft.com/fwlink/?LinkId=717980
+Get-MarkdownOption,https://go.microsoft.com/fwlink/?linkid=2006371
+Get-Runspace,https://go.microsoft.com/fwlink/?linkid=2096616
+Get-RunspaceDebug,https://go.microsoft.com/fwlink/?linkid=2097015
Get-ScheduledJob,https://go.microsoft.com/fwlink/?LinkID=223923
Get-ScheduledJobOption,https://go.microsoft.com/fwlink/?LinkID=223920
-Get-TypeData,https://go.microsoft.com/fwlink/?LinkID=217033
+Get-TimeZone,https://go.microsoft.com/fwlink/?linkid=2096904
+Get-TypeData,https://go.microsoft.com/fwlink/?linkid=2097018
+Get-Uptime,https://go.microsoft.com/fwlink/?linkid=834862
Import-PSWorkflow,https://go.microsoft.com/fwlink/?LinkID=210606
-Invoke-RestMethod,https://go.microsoft.com/fwlink/?LinkID=217034
-Invoke-WebRequest,https://go.microsoft.com/fwlink/?LinkID=217035
+Invoke-RestMethod,https://go.microsoft.com/fwlink/?linkid=2096706
+Invoke-WebRequest,https://go.microsoft.com/fwlink/?linkid=2097126
New-CIMModule,https://go.microsoft.com/fwlink/?LinkID=210607
+New-FileCatalog,https://go.microsoft.com/fwlink/?linkid=2096596
+New-Guid,https://go.microsoft.com/fwlink/?linkid=2097130
New-JobTrigger,https://go.microsoft.com/fwlink/?LinkID=223912
-New-PSSessionConfigurationFile,https://go.microsoft.com/fwlink/?LinkID=217036
+New-LocalGroup,https://go.microsoft.com/fwlink/?LinkId=717990
+New-LocalUser,https://go.microsoft.com/fwlink/?LinkId=717981
+New-PSSessionConfigurationFile,https://go.microsoft.com/fwlink/?linkid=2096791
New-PSSessionConfigurationOption,https://go.microsoft.com/fwlink/?LinkID=210608
New-PSWorkflowExecutionOption,https://go.microsoft.com/fwlink/?LinkID=210609
New-ScheduledJobOption,https://go.microsoft.com/fwlink/?LinkID=223919
New-Snippet,https://go.microsoft.com/fwlink/?LinkID=225298
-New-WinEvent,https://go.microsoft.com/fwlink/?LinkID=217469
+New-TemporaryFile,https://go.microsoft.com/fwlink/?linkid=2097032
+New-WinEvent,https://go.microsoft.com/fwlink/?linkid=2096808
Out-LineOutput,https://go.microsoft.com/fwlink/?LinkID=210610
-Protect-CmsMessage,https://go.microsoft.com/fwlink/?LinkId=394373
-Receive-PSSession,https://go.microsoft.com/fwlink/?LinkID=217037
+Protect-CmsMessage,https://go.microsoft.com/fwlink/?linkid=2096826
+Receive-PSSession,https://go.microsoft.com/fwlink/?linkid=2096800
Register-JobEvent,https://go.microsoft.com/fwlink/?LinkID=221730
Register-ScheduledJob,https://go.microsoft.com/fwlink/?LinkID=223922
Remove-JobTrigger,https://go.microsoft.com/fwlink/?LinkID=223914
-Remove-TypeData,https://go.microsoft.com/fwlink/?LinkID=217038
-Rename-Computer,https://go.microsoft.com/fwlink/?LinkID=219990
+Remove-LocalGroup,https://go.microsoft.com/fwlink/?LinkId=717975
+Remove-LocalGroupMember,https://go.microsoft.com/fwlink/?LinkId=717989
+Remove-LocalUser,https://go.microsoft.com/fwlink/?LinkId=717982
+Remove-TypeData,https://go.microsoft.com/fwlink/?linkid=2096622
+Rename-Computer,https://go.microsoft.com/fwlink/?linkid=2097054
+Rename-LocalGroup,https://go.microsoft.com/fwlink/?LinkId=717978
+Rename-LocalUser,https://go.microsoft.com/fwlink/?LinkID=717983
Resume-Job,https://go.microsoft.com/fwlink/?LinkID=210611
-Save-Help,https://go.microsoft.com/fwlink/?LinkID=210612
+Save-Help,https://go.microsoft.com/fwlink/?linkid=2096794
+Set-Clipboard,https://go.microsoft.com/fwlink/?LinkId=2109826
Set-ContentFileSystem,https://go.microsoft.com/fwlink/?LinkID=204570
Set-JobTrigger,https://go.microsoft.com/fwlink/?LinkID=223916
+Set-LocalGroup,https://go.microsoft.com/fwlink/?LinkId=717979
+Set-LocalUser,https://go.microsoft.com/fwlink/?LinkId=717984
+Set-MarkdownOption,https://go.microsoft.com/fwlink/?linkid=2006265
Set-ScheduledJob,https://go.microsoft.com/fwlink/?LinkID=223924
Set-ScheduledJobOption,https://go.microsoft.com/fwlink/?LinkID=223921
+Set-TimeZone,https://go.microsoft.com/fwlink/?linkid=2097056
Show-Command,https://go.microsoft.com/fwlink/?LinkID=2109589
Show-ControlPanelItem,https://go.microsoft.com/fwlink/?LinkID=219983
+Show-Markdown,https://go.microsoft.com/fwlink/?linkid=2102329
Suspend-Job,https://go.microsoft.com/fwlink/?LinkID=210613
-Test-PSSessionConfigurationFile,https://go.microsoft.com/fwlink/?LinkID=217039
-Unblock-File,https://go.microsoft.com/fwlink/?LinkID=217450
-Unprotect-CmsMessage,https://go.microsoft.com/fwlink/?LinkId=394374
+Test-FileCatalog,https://go.microsoft.com/fwlink/?linkid=2096921
+Test-PSSessionConfigurationFile,https://go.microsoft.com/fwlink/?linkid=2096797
+Unblock-File,https://go.microsoft.com/fwlink/?linkid=2097033
+Unprotect-CmsMessage,https://go.microsoft.com/fwlink/?linkid=2096701
Unregister-ScheduledJob,https://go.microsoft.com/fwlink/?LinkID=223925
-Update-Help,https://go.microsoft.com/fwlink/?LinkID=210614
-Get-ItemPropertyValue,https://go.microsoft.com/fwlink/?LinkId=389281
-Compress-Archive,https://go.microsoft.com/fwlink/?LinkID=393252
-Expand-Archive,https://go.microsoft.com/fwlink/?LinkID=393253
-Get-Runspace,https://go.microsoft.com/fwlink/?LinkId=403730
-Debug-Runspace,https://go.microsoft.com/fwlink/?LinkId=403731
-Enable-RunspaceDebug,https://go.microsoft.com/fwlink/?LinkId=403732
-Disable-RunspaceDebug,https://go.microsoft.com/fwlink/?LinkId=403733
-Get-RunspaceDebug,https://go.microsoft.com/fwlink/?LinkId=403734
-Wait-Debugger,https://go.microsoft.com/fwlink/?LinkId=403735
-Enter-PSHostProcess,https://go.microsoft.com/fwlink/?LinkId=403736
-Exit-PSHostProcess,https://go.microsoft.com/fwlink/?LinkId=403737
-Clear-RecycleBin,https://go.microsoft.com/fwlink/?LinkId=2109377
-ConvertFrom-String,https://go.microsoft.com/fwlink/?LinkId=507579
-New-TemporaryFile,https://go.microsoft.com/fwlink/?LinkId=821836
-New-Guid,https://go.microsoft.com/fwlink/?LinkId=526920
-Format-Hex,https://go.microsoft.com/fwlink/?LinkId=526919
-Convert-String,https://go.microsoft.com/fwlink/?LinkId=528577
-Get-Clipboard,https://go.microsoft.com/fwlink/?LinkId=2109905
-Set-Clipboard,https://go.microsoft.com/fwlink/?LinkId=2109826
-Write-Information,https://go.microsoft.com/fwlink/?LinkId=525909
-Add-LocalGroupMember,https://go.microsoft.com/fwlink/?LinkId=717987
-Disable-LocalUser,https://go.microsoft.com/fwlink/?LinkId=717986
-Enable-LocalUser,https://go.microsoft.com/fwlink/?LinkId=717985
-Get-LocalGroup,https://go.microsoft.com/fwlink/?LinkId=717974
-Get-LocalGroupMember,https://go.microsoft.com/fwlink/?LinkId=717988
-Get-LocalUser,https://go.microsoft.com/fwlink/?LinkId=717980
-New-LocalGroup,https://go.microsoft.com/fwlink/?LinkId=717990
-New-LocalUser,https://go.microsoft.com/fwlink/?LinkId=717981
-Remove-LocalGroup,https://go.microsoft.com/fwlink/?LinkId=717975
-Remove-LocalGroupMember,https://go.microsoft.com/fwlink/?LinkId=717989
-Remove-LocalUser,https://go.microsoft.com/fwlink/?LinkId=717982
-Rename-LocalGroup,https://go.microsoft.com/fwlink/?LinkId=717978
-Rename-LocalUser,https://go.microsoft.com/fwlink/?LinkID=717983
-Set-LocalGroup,https://go.microsoft.com/fwlink/?LinkId=717979
-Set-LocalUser,https://go.microsoft.com/fwlink/?LinkId=717984
-New-FileCatalog,https://go.microsoft.com/fwlink/?LinkId=786749
-Test-FileCatalog,https://go.microsoft.com/fwlink/?LinkId=786750
-Get-ComputerInfo,https://go.microsoft.com/fwlink/?LinkId=799466
-Get-TimeZone,https://go.microsoft.com/fwlink/?LinkId=799468
-Set-TimeZone,https://go.microsoft.com/fwlink/?LinkId=799469
-Get-Uptime,https://go.microsoft.com/fwlink/?linkid=834862
-ConvertFrom-Markdown,https://go.microsoft.com/fwlink/?linkid=2006503
-Get-MarkdownOption,https://go.microsoft.com/fwlink/?linkid=2006371
-Set-MarkdownOption,https://go.microsoft.com/fwlink/?linkid=2006265
-Show-Markdown,https://go.microsoft.com/fwlink/?linkid=2006266
-Get-ExperimentalFeature,https://go.microsoft.com/fwlink/?linkid=2007351
+Update-Help,https://go.microsoft.com/fwlink/?linkid=2096805
+Wait-Debugger,https://go.microsoft.com/fwlink/?linkid=2097035
+Write-Information,https://go.microsoft.com/fwlink/?linkid=2097040